TextFormField 中的提示文本未与前缀和后缀图标对齐
Hinttext in the TextFormField is not aligned with the prefix and suffix Icon
与前缀和后缀图标相比,textformfield 中的提示文本有点提升(感觉好像比两个图标向上)。
我还附上了我用于此 TextFormfield 的代码:
TextFormField(
style:
w400.size12.copyWith(color: BrandColor.foodsearchViewTextColor),
cursorColor: BrandColor.foodsearchViewTextColor,
decoration: InputDecoration(
prefixIcon: Padding(
padding: const EdgeInsets.only(right: 18.0),
child: IconButton(
icon: SvgPicture.asset(
SvgAssets.food_search_icon,
color: BrandColor.foodsearchViewTextColor,
),
onPressed: null,
),
),
suffixIcon: Padding(
padding: const EdgeInsets.only(right: 14.0),
child: IconButton(
icon: SvgPicture.asset(
SvgAssets.food_searchview_suffix,
color: BrandColor.foodsearchViewTextColor,
),
onPressed: null,
),
),
focusedBorder: InputBorder.none,
enabledBorder: InputBorder.none,
errorBorder: InputBorder.none,
disabledBorder: InputBorder.none,
focusedErrorBorder: InputBorder.none,
border: InputBorder.none,
hintText: foodSearchText,
hintStyle: w400.size12.copyWith(
color: BrandColor.foodsearchViewTextColor, fontSize: 13)),
),
我也试过用中心小部件包裹 textformfield 但它没有解决问题。
如果有人能提供帮助,我将不胜感激
您可以像这样在 InputDecoration
中使用 contentPadding
参数
contentPadding: EdgeInsets.symmetric(vertical: 15)
或
contentPadding: EdgeInsets.only(top: 15)
您可以在 MaterialApp
中借助 theme
全局设置 contentPadding
theme: ThemeData(
inputDecorationTheme: InputDecorationTheme(
contentPadding: EdgeInsets.symmetric(vertical: 15),
),
),
与前缀和后缀图标相比,textformfield 中的提示文本有点提升(感觉好像比两个图标向上)。
我还附上了我用于此 TextFormfield 的代码:
TextFormField(
style:
w400.size12.copyWith(color: BrandColor.foodsearchViewTextColor),
cursorColor: BrandColor.foodsearchViewTextColor,
decoration: InputDecoration(
prefixIcon: Padding(
padding: const EdgeInsets.only(right: 18.0),
child: IconButton(
icon: SvgPicture.asset(
SvgAssets.food_search_icon,
color: BrandColor.foodsearchViewTextColor,
),
onPressed: null,
),
),
suffixIcon: Padding(
padding: const EdgeInsets.only(right: 14.0),
child: IconButton(
icon: SvgPicture.asset(
SvgAssets.food_searchview_suffix,
color: BrandColor.foodsearchViewTextColor,
),
onPressed: null,
),
),
focusedBorder: InputBorder.none,
enabledBorder: InputBorder.none,
errorBorder: InputBorder.none,
disabledBorder: InputBorder.none,
focusedErrorBorder: InputBorder.none,
border: InputBorder.none,
hintText: foodSearchText,
hintStyle: w400.size12.copyWith(
color: BrandColor.foodsearchViewTextColor, fontSize: 13)),
),
我也试过用中心小部件包裹 textformfield 但它没有解决问题。 如果有人能提供帮助,我将不胜感激
您可以像这样在 InputDecoration
中使用 contentPadding
参数
contentPadding: EdgeInsets.symmetric(vertical: 15)
或
contentPadding: EdgeInsets.only(top: 15)
您可以在 MaterialApp
theme
全局设置 contentPadding
theme: ThemeData(
inputDecorationTheme: InputDecorationTheme(
contentPadding: EdgeInsets.symmetric(vertical: 15),
),
),