只需要在Text外面加上Expanded就行。
切记层次是Row->Expanded->Text()
中间如果加入其他组件,如GestureDetector,也会失效。
Row(
children:[
Text('昵称'),
Expanded(child:Text('文字内容')),
]
)
ps:子回复我最后用TextSpan更加完美的实现了:
https://www.jianshu.com/p/3eef12e324e3
只需要在Text外面加上Expanded就行。
切记层次是Row->Expanded->Text()
中间如果加入其他组件,如GestureDetector,也会失效。
Row(
children:[
Text('昵称'),
Expanded(child:Text('文字内容')),
]
)
ps:子回复我最后用TextSpan更加完美的实现了:
https://www.jianshu.com/p/3eef12e324e3
本文标题:Row的text会自动溢出宽度
本文链接:https://www.haomeiwen.com/subject/nksfhrtx.html
网友评论