在這種情況下,可以使用RichText而不是Wrap。 RichText( text: TextSpan( style: TextStyle(fontSize: 25.0), children: [ TextSpan(text: 'Hello, my name '), TextSpan( text: 'is', style: TextStyle( backgroundColor: Colors.amber, )), TextSpan(text: ' Gabriele, and i am 21 years old!'), ], ),), 如果需要在文本旁邊包含其他簡單內容,可以使用WidgetSpan包裝小部件,并在TextSpan上用作children。 RichText( text: TextSpan( style: TextStyle(fontSize: 25.0), children: [ TextSpan(text: 'Hello, my name '), WidgetSpan( child: Container( color: Colors.green, width: 40, height: 40, )),