buildTextContent function
构建文本内容
Implementation
Widget buildTextContent(List<InlineSpan> children) {
return DefaultTextStyle(
style: TextStyle(
fontSize: 13.r,
color: StormyTheme.currentVariant.labelText,
),
child: RichText(
text: TextSpan(
style: TextStyle(
fontSize: 13.r,
color: StormyTheme.currentVariant.labelText,
),
children: children,
),
),
);
}