Rich Text Editor App with formatting capabilities in flutter

Viewed 242

I want to create a rich text editor in flutter for mobile. What would be the best way to go for it. What widgets and overrides can I use for the same.

I have explored packages like zefyr, flutter_markdown but they do not give level of customization needed for my used case.

1 Answers

Use a webview render content and use postMessage to exec command, receive messages in flutter.

Related