Flutter中TextField中标签的默认TextStyle是什么?

时间:2020-08-26 17:11:25

标签: flutter textstyle

我希望DropdownButton提示和项(文本)具有与TextField小部件中的标签相同的TextStyle。就我而言,下拉项如下-

DropdownMenuItem<String>(
     value: value,
     child: Text(value),
);
// where the value is a String

1 个答案:

答案 0 :(得分:1)

您可以将DropDownButton提示中的Theme.of(context).inputDecorationTheme.labelStyle 和项目设置为:

Text(
  'sample text',
  style: Theme.of(context).inputDecorationTheme.labelStyle,
)

示例:

Float