docs: Update todo and fix typo

pull/1564/head
Ellet 1 year ago
parent f5bcaa8dc5
commit 137ed5c801
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 1
      doc/todo.md
  2. 2
      lib/src/extensions/quill_provider.dart

@ -28,6 +28,7 @@ This is a todo list page that added recently and will be updated soon.
- Provide more support to all the platforms - Provide more support to all the platforms
- Extract the shared properties between `QuillRawEditorConfigurations` and `QuillEditorConfigurations` - Extract the shared properties between `QuillRawEditorConfigurations` and `QuillEditorConfigurations`
- The todo in the this [commit](https://github.com/singerdmx/flutter-quill/commit/79597ea6425357795c0663588ac079665241f23a) needs to be checked - The todo in the this [commit](https://github.com/singerdmx/flutter-quill/commit/79597ea6425357795c0663588ac079665241f23a) needs to be checked
- use `maybeOf` and of instead `ofNotNull` in the providers to follow flutter offical convenstion, completly rework the providers and update the build context extensions
### Bugs ### Bugs

@ -138,7 +138,7 @@ extension QuillProviderExt on BuildContext {
return quillToolbarConfigurations?.buttonOptions.base ?? return quillToolbarConfigurations?.buttonOptions.base ??
quillBaseToolbarConfigurations?.buttonOptions.base ?? quillBaseToolbarConfigurations?.buttonOptions.base ??
(throw ArgumentError( (throw ArgumentError(
"The buttonOptions is required and it's required", "The buttonOptions is required and it's null because the toolbar configurations is.",
)); ));
} }

Loading…
Cancel
Save