gpt4 book ai didi

flutter - 如何在 Flutter 中 TextFormField 的标签中添加红色 Asterisk

转载 作者:行者123 更新时间:2023-12-03 13:30:07 28 4
gpt4 key购买 nike

由于我们无法制作像 RichText/Text Span 这样的小部件来设置 TextFormField 的样式,
谁能帮我解决这个问题...
现在得到:-
enter image description here
预期结果:-
enter image description here
我们如何才能达到这样的结果?

最佳答案

最简单的方法,但不完全等于:

              TextField(
decoration: InputDecoration(
hintText: 'Ciao',
suffixText: '*',
suffixStyle: TextStyle(
color: Colors.red,
),
),
),

或创建自定义 TextField使用提示作为小部件而不是字符串

您可以使用我的两个自定义文件:
  • input_decorator.dart
  • text_field_custom.dart

  •               TextFieldCustom(
    hintText: Text.rich(
    TextSpan(
    text: 'FIRST NAME',
    children: <InlineSpan>[
    TextSpan(
    text: '*',
    style: TextStyle(color: Colors.red),
    ),
    ],
    style: TextStyle(color: Colors.black54),
    ),
    ),
    ),

    关于flutter - 如何在 Flutter 中 TextFormField 的标签中添加红色 Asterisk ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58850122/

    28 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com