Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望 DropdownButton 提示和项目(文本)的 TextStyle 与 TextField 小部件中的标签相同。就我而言,下拉项目如下 -
DropdownMenuItem<String>( value: value, child: Text(value), ); // where the value is a String
您可以将style提示DropDownButton和项目设置为:
style
DropDownButton
Theme.of(context).inputDecorationTheme.labelStyle
例子:
Text( 'sample text', style: Theme.of(context).inputDecorationTheme.labelStyle, )