Flutter Web - SelectableText 小部件中缺少复制选项

Ale*_*ski 7 flutter flutter-web

我正在尝试使用 Flutter SelectableTextWidget 来确保可以在我的Web 应用程序中复制文本,但是上下文菜单中没有出现“复制”选项。

上下文菜单

我正在使用以下代码(“全选”和“复制”应作为默认工具栏选项https://api.flutter.dev/flutter/material/SelectableText/toolbarOptions.html 给出):

SelectableText(
  'Hello from Flutter',
),
Run Code Online (Sandbox Code Playgroud)

谁能帮我解决这个问题?

Shy*_*dda 1

我尝试过,它有效,但我们无法选择文本的一部分,但我们可以选择整个文本。

child: SelectableText(sample.sourceCode,
          cursorColor: Colors.red,
          showCursor: true,
          toolbarOptions: ToolbarOptions(
              copy: true,
              selectAll: true,
              cut: false,
              paste: false
          ),
          style: TextStyle(color: Colors.black, fontStyle: FontStyle.normal))
Run Code Online (Sandbox Code Playgroud)

在网络中使用Ctrl+ACtrl+C复制整个文本。