1

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

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

1 回答 1

0

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

Theme.of(context).inputDecorationTheme.labelStyle

例子:

Text(
  'sample text',
  style: Theme.of(context).inputDecorationTheme.labelStyle,
)
于 2020-08-26T18:24:06.253 回答