How to make text editor wih bold, italic, etc formatter in flutter?

1,602

Check out Zefyr. It's a package for "soft and gentle rich text editing for Flutter applications".

2

Share:
1,602
Vysco Zyza
Author by

Vysco Zyza

Updated on December 21, 2022

Comments

  • Vysco Zyza
    Vysco Zyza over 1 year

    I want to make flutter app which has a textfield who can be edited with format bold, italic, underline as shown in this picture https://i.stack.imgur.com/OKD04.png

    is there a way to make this come true with flutter?

    • Osama Abdullah
      Osama Abdullah almost 4 years
      you need to access the clipboard if the user copied something, you need to have a state where you store the textfield input, the buttons, each button applies an efffect on the text, hope this gives you a clue