diff --git a/CHANGELOG.md b/CHANGELOG.md index fff75fbc..b71e9bda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -123,4 +123,7 @@ * Fix static analysis errors. ## [1.0.2] -* Update toolbar in sample home page. \ No newline at end of file +* Update toolbar in sample home page. + +## [1.0.3] +* Fix issue that text is not displayed while typing [WEB]. \ No newline at end of file diff --git a/app/pubspec.lock b/app/pubspec.lock index 87d40445..4664ec7b 100644 --- a/app/pubspec.lock +++ b/app/pubspec.lock @@ -145,7 +145,7 @@ packages: path: ".." relative: true source: path - version: "1.0.2" + version: "1.0.3" flutter_test: dependency: "direct dev" description: flutter diff --git a/lib/widgets/raw_editor.dart b/lib/widgets/raw_editor.dart index 6b095a27..7389cab1 100644 --- a/lib/widgets/raw_editor.dart +++ b/lib/widgets/raw_editor.dart @@ -886,7 +886,7 @@ class RawEditorState extends EditorState } _didChangeTextEditingValue() { - if (_keyboardVisible) { + if (_keyboardVisible || kIsWeb) { _onChangeTextEditingValue(); } else { requestKeyboard(); diff --git a/pubspec.yaml b/pubspec.yaml index b40f6f5a..13b830a9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App. -version: 1.0.2 +version: 1.0.3 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill.git