我只是想制作一个Text
可选择的. 我阅读了文档,建议您Selectable.rich
在使用TextSpans
. 这是我尝试过的:
child: SelectableText.rich(
TextSpan(
children: span.text, // <- span.text is of type List<TextSpan>?
),
key: UniqueKey(),
textAlign: TextAlign.left,
toolbarOptions: ToolbarOptions(selectAll: true, copy: true),
),
但没有什么是可选择的。我在这里想念什么?