flutter - 使用RichText 如何设置每个TextS

2023-10-23  本文已影响0人  6bbba3902a7a

RichText(

  text: TextSpan(

    children: [

      TextSpan(text: 'Hello'),

      WidgetSpan(

        child: SizedBox(width: 10), // 设置间隙的宽度

      ),

      TextSpan(text: 'World'),

    ],

  ),

)

上一篇 下一篇

猜你喜欢

热点阅读