在我的一个 SpanText 中应用填充比在另一个 spanText 或 Rich Text 的填充中应用填充有什么技巧吗?
Is there any trick to apply padding in one of my SpanText more than the other spanText or Rich Text's Padding?
RichText(
textAlign:TextAlign.center,
text:TextSpan(
children:[
TextSpan(
text:'Create an Account to Continue \n \n',
style:TextStyle(
fontSize:17.0,
fontWeight:FontWeight.bold,
color:Colors.black,
),
),
TextSpan(
text:'By continuing You Agreed to Our ',
style:TextStyle(
fontSize:17.0,
color:Colors.black45,
),
),
TextSpan(
text:'terms of services',
style:TextStyle(
fontSize:17.0,
color:Colors.blue,
),
),
TextSpan(
text:'.',
style:TextStyle(
color:Colors.black,
),
),
],),
),
我不这么认为,这不是TextSpan widget的作用,Padding是一个图形元素,TextPan是一个文本元素。
你最好做两个 RichText 并在它们上面应用填充,你的代码会更清晰。
RichText(
textAlign:TextAlign.center,
text:TextSpan(
children:[
TextSpan(
text:'Create an Account to Continue \n \n',
style:TextStyle(
fontSize:17.0,
fontWeight:FontWeight.bold,
color:Colors.black,
),
),
TextSpan(
text:'By continuing You Agreed to Our ',
style:TextStyle(
fontSize:17.0,
color:Colors.black45,
),
),
TextSpan(
text:'terms of services',
style:TextStyle(
fontSize:17.0,
color:Colors.blue,
),
),
TextSpan(
text:'.',
style:TextStyle(
color:Colors.black,
),
),
],),
),
我不这么认为,这不是TextSpan widget的作用,Padding是一个图形元素,TextPan是一个文本元素。 你最好做两个 RichText 并在它们上面应用填充,你的代码会更清晰。