How to add red asterisk in label of TextFormField In Flutter

前端 未结 3 366
小鲜肉
小鲜肉 2021-01-19 11:49

As we are not able to make widget like RichText/Text Span For styling TextFormField, How we can achieve a result like this? Can anyone help me out regarding this... thanks i

3条回答
  •  梦毁少年i
    2021-01-19 12:26

    Try these two files I had same requirement. Just add attribute isMandate: true in CInputDecoration and use CTextField.

    CTextField(
    ...
      decoration: new CInputDecoration(
         isMandate: true,
    ...
    ))
    

    https://github.com/sumit1954/Flutter/blob/master/CInputDecorator.dart https://github.com/sumit1954/Flutter/blob/master/CTextField.dart

提交回复
热议问题