How to make copyable Text Widget in Flutter?

前端 未结 5 1219
闹比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:10

    SelectableText(
      "Copy me",
      onTap: () {
        // you can show toast to the user, like "Copied"
      },
    )
    

    If you want to have different styling for text, use

    SelectableText.rich(
      TextSpan(
        children: [
          TextSpan(text: "Copy me", style: TextStyle(color: Colors.red)),
          TextSpan(text: " and leave me"),
        ],
      ),
    )
    

提交回复
热议问题