-1

我正在尝试在我的应用程序中创建法律页面,例如条款和条件以及隐私政策页面。

除了使用默认的 Text 小部件之外,Flutter 是否有专门设计用于接收长格式文本的小部件?或者这有什么技巧吗?也许从文本文件中读取?

我试图避免在我的飞镖文件中使用多个文本小部件来显示我的长格式法律页面。

谢谢。

4

1 回答 1

1
Expanded(            
    child: Text(
      'a long text',
      overflow: TextOverflow.clip,
    ),
),

如果您在文本中有各种样式,您可以使用RichText

RichText(
  overflow: TextOverflow.clip
  text: TextSpan(
    text: 'Hello ',
    style: DefaultTextStyle.of(context).style,
    children: <TextSpan>[
      TextSpan(text: 'Super long bolded text here', style: TextStyle(fontWeight: FontWeight.bold)),
      TextSpan(text: 'Super long unbolded text here'),
    ],
  ),
)
于 2020-10-25T16:18:28.450 回答