【问题标题】:Flutter Web - Missing copy option in SelectableText WidgetFlutter Web - SelectableText 小部件中缺少复制选项
【发布时间】:2020-06-28 16:31:07
【问题描述】:

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

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

SelectableText(
  'Hello from Flutter',
),

谁能帮我解决这个问题?

【问题讨论】:

标签: flutter flutter-web


【解决方案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))

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

【讨论】:

    猜你喜欢
    • 2020-04-08
    • 1970-01-01
    • 2011-06-03
    • 2017-02-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多