在TextField的errorText的*
之后,我需要将所有文本设置为黑色
并将*
保留为红色。
(我们知道errorText中的文本默认情况下是红色的,因此我不需要将*
设置为红色,但是我必须在*
之后将所有文本都设置为黑色)。
TextField(
decoration: new InputDecoration(
labelText: 'Enter Bitcoin Address',
errorText: '* P2PKH which begin with the number 1',
//make 'P2PKH which begin with the number 1' black
),
onSubmitted: (v)=>{},
),