How to change Selection Color of Text in Flutter
The Text in Flutter is not selectable by default. So you have to choose the SelectableText widget to make the text selectable. In this Flutter tutorial, let’s check how to change the selection color of the text. The SelectableText widget can be used for single-style text whereas SelectableText.rich constructor should be used for text with…