How to make copyable Text Widget in Flutter?

Since Flutter 1.9 you can use

SelectableText("Lorem ipsum...")

When text is selected the “Copy” context button will appear.

enter image description here

Leave a Comment