Have you checked for an existing issue?
Flutter Quill Version
flutter_quill: ^11.4.1
Steps to Reproduce
- Create quill detla of object with following format
{
"ops": [
{
"attributes": {
"color": "windowtext",
"background": "transparent"
},
"insert": "Your text here"
},
{
"attributes": {
"color": "yellow",
"background": "transparent"
},
"insert": "Your text here"
}
]
}
- Load it into the flutter quill
Expected results
Should show correct color or remove color attribute if you don't support it
Actual results
Throw error "Unsupported operation: Color code not supported"
Additional Context
No response