How to make copyable Text Widget in Flutter?

前端 未结 5 1217
闹比i
闹比i 2020-12-04 16:54

When long tab on Text widget, a tooltip show up with \'copy\'. When click on the \'copy\' the text content should copy to system clipboard.

The following will copy t

5条回答
  •  情深已故
    2020-12-04 17:29

    Since Flutter 1.9 you can use

    SelectableText("Lorem ipsum...")
    

    When text is selected the "Copy" context button will appear.

提交回复
热议问题