raman raman
raman raman

Reputation: 1811

Can you help me finding the best method to add long paragraphs in flutter?

I know about html plugins which can be used to add pages of long paragraphs

I also know about flutter codes which can be used to add long paras of texts

But I am not satisfied with both methods..

I am creating a lesson app and want to insert tons of texts and images in a beautifully way...

Can you suggest me any way [better way] to add long texts with keeping eye on the size of the app

I have added screenshots for reference

enter image description here

enter image description here

Upvotes: 0

Views: 162

Answers (1)

Nolence
Nolence

Reputation: 2254

I'd recommend checking out Zefyr. It's a WYSIWYG that can embed images, display lists and even has collaborative editing capabilities. If you only wanted it for presentation you could make it view only by changing the mode to ZefyrMode.view on the ZefyrEditor constructor.

Edit: Another more lightweight solution is to use flutter_markdown. It also supports images, lists and so on and doesn't require the special delta format that Zefyr does when storing your strings of text.

Upvotes: 1

Related Questions