Allow QuillProvider to rebuild w/o exception (#1448)

pull/1449/head^2
Michael Allen 1 year ago committed by GitHub
parent 3a82930bbe
commit 7033d80584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/src/widgets/utils/provider.dart

@ -18,7 +18,7 @@ class QuillProvider extends InheritedWidget {
@override
bool updateShouldNotify(covariant InheritedWidget oldWidget) {
throw false;
return true;
}
static QuillProvider? of(BuildContext context) {

Loading…
Cancel
Save