【问题标题】:What is the default TextStyle for label in TextField in Flutter?Flutter中TextField中标签的默认TextStyle是什么?
【发布时间】:2020-08-26 17:11:25
【问题描述】:

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

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

【问题讨论】:

    标签: flutter textstyle


    【解决方案1】:

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

    Theme.of(context).inputDecorationTheme.labelStyle
    

    例子:

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

    【讨论】:

      猜你喜欢
      • 2013-10-23
      • 2021-09-23
      • 2013-12-08
      • 1970-01-01
      • 2021-04-22
      • 2019-10-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多