所以我最近玩了 flutter,我的脑海中浮现了一个换行文本的概念,我很想知道这一点。
在此输入图片描述
我尝试过使用
Flexible
Sizedbox
Expanded
谢谢!
您可以使用
RichText
RichText( text: TextSpan( children: [ const TextSpan(text: "How to do ", style: TextStyle(color: Colors.black)), WidgetSpan(child: Container(color: Colors.grey, child: const Text("Icon"))), const TextSpan(text: "\nthis in flutter?", style: TextStyle(color: Colors.black)), ], ), ),