simc / auto_size_text

Flutter widget that automatically resizes text to fit perfectly within its bounds.
https://pub.dev/packages/auto_size_text
MIT License
2.06k stars 241 forks source link

Selectable Text #107

Open jayeshindianic opened 2 years ago

jayeshindianic commented 2 years ago

Is your feature request related to a problem? Please describe. currently, users cant copy or select text from a string.

Describe the solution you'd like SelectableText Widget In Flutter

Version

tgpsantos commented 2 years ago

Came here looking for this to be used in flutter web

reiko-dev commented 2 years ago

+1

amejiarosario commented 2 years ago

Looks like https://github.com/leisim/auto_size_text/pull/94 is workaround

divan commented 1 year ago

Moving this up from the rabbit hole:

Since Flutter 3.3 we can use:

return SelectionArea(
     child: AutoSizeText('text'),
);
Tananga commented 1 year ago

+1