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

What is the default TextStyle for label in TextField in Flutter?

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

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

您可以将 DropDownButton 提示和项目的 style 设置为:

Theme.of(context).inputDecorationTheme.labelStyle

示例:

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