【问题标题】:Decorate TextFormField to have some Text in the border装饰 TextFormField 在边框中有一些文本
【发布时间】:2022-08-19 01:03:00
【问题描述】:

我试图得到这个结果,试图扩展 InputBorder 并覆盖 paint 方法以获得我想要的,但真的很难让它工作

    标签: flutter dart flutter-layout


    【解决方案1】:

    您可以通过包装标签文本来获得相同的结果

    TextFormField(
      decoration: InputDecoration(
        label: const Center(
          child: Text(" Label Text"),
        ),
      ),
    )
    

    或者你也可以使用

    floatingLabelAlignment: FloatingLabelAlignment.center,
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-01-12
      • 1970-01-01
      • 2012-08-06
      • 2021-11-27
      • 2013-06-29
      • 1970-01-01
      • 2022-08-03
      • 1970-01-01
      相关资源
      最近更新 更多