Search code examples
flutterdartflutter-layout

How to change text selection option in flutter?


I tried to add text editing format option like in the gmail app. But when highlight the text there' is not a format option. Is it possible to handle selecting alert? (Copy/cut/paste). Or is there a way to add format bar like gmail?

       TextField(
          controller: _categoryController,
          decoration: InputDecoration(
            border: InputBorder.none,
            hintText: "Enter Category Name",
          ),
        ),

I added screenshot and gif files to better understanding my question.

Selecting option on my Flutter application

selecting option on my Flutter application

Selecting option on Gmail App

enter image description here


Solution

  • You can use Selectable Widget. more info - click here

    const SelectableText(
      'Hello! How are you?',
      textAlign: TextAlign.center,
      style: TextStyle(fontWeight: FontWeight.bold),
    )