I want to store rich text like an article in flutter. I've found out flutter_quill is best package for writing rich text but it outputs as a json. How can I store articles in appwrite
TL;DR
To store rich text articles in Appwrite using Flutter, developers can utilize the flutter_quill package to write the articles in JSON format. The recommended approach is to create a string attribute, stringify the JSON data before storing it, and parse it when pulling the data.
Kenny
26 Feb, 2025, 15:32
I think in this instance the best way is to create a string attribute and before storing the JSON data stringify it, then when pulling it parse it.