Reputation: 61
The textview in flutter has some styling(Font family,color,style etc) and when I try to copy the text, only the text value gets copied but I need styling also.
Upvotes: 4
Views: 510
Reputation: 542
styling properties are given to display text in given Style it is not the property of text. Text is copied in UTF byte Format so, When you copy text Only text gets copied the style and Other property does not get copied.
Upvotes: 2