gpt4 book ai didi

flutter - 在 TextSpan 之间留出空间

转载 作者:行者123 更新时间:2023-12-02 18:13:15 24 4
gpt4 key购买 nike

我试图在 TextSpan 之间留出空间在 TextSpan 之间添加空格的最佳方法是什么?

child: RichText(
text: TextSpan(
children: [
TextSpan(
text: 'Don\'t have an Account?',
style: TextStyle(
color: Colors.white,
fontSize: 15.0,
fontWeight: FontWeight.w400,
),
),

TextSpan(
text: 'Sign Up',
style: TextStyle(
color: Colors.white,
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
),
],
),
),

最佳答案

SizedBox 小部件可以在两个小部件之间使用,以在两个小部件之间添加空间。通过用 WidgetSpan widgit

包裹它来使用 SizedBox
child: RichText(
text: TextSpan(
children: [
TextSpan(
text: 'Don\'t have an Account?',
style: TextStyle(
color: Colors.white,
fontSize: 15.0,
fontWeight: FontWeight.w400,
),
),
WidgetSpan(
child: SizedBox(width: 10),
),
TextSpan(
text: 'Sign Up',
style: TextStyle(
color: Colors.white,
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
),
],
),
),

关于flutter - 在 TextSpan 之间留出空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71979775/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com