如何使不同的字体大小在一个文本字段?我想使1个文本字段,但不同的字符输入有不同的字体大小/颜色/样式等。[AABBaS 好的,伙计**!**]
i5desfxk1#
你可以试试这个
RichText( text: TextSpan( text: 'Hello ', style: DefaultTextStyle.of(context).style, children: const <TextSpan>[ TextSpan(text: 'bold', style: TextStyle(fontWeight: FontWeight.bold)), TextSpan(text: ' world!'), ], ), )
来源:https://api.flutter.dev/flutter/widgets/RichText-class.html
1条答案
按热度按时间i5desfxk1#
你可以试试这个
来源:https://api.flutter.dev/flutter/widgets/RichText-class.html