RichText(
text: TextSpan(
children: [
TextSpan(text: 'Hello'),
WidgetSpan(
child: SizedBox(width: 10), // 设置间隙的宽度
),
TextSpan(text: 'World'),
],
),
)
RichText(
text: TextSpan(
children: [
TextSpan(text: 'Hello'),
WidgetSpan(
child: SizedBox(width: 10), // 设置间隙的宽度
),
TextSpan(text: 'World'),
],
),
)