Upgrade version to 1.0.3 - Fix issue that text is not displayed while typing [WEB]

pull/71/head
Xin Yao 4 years ago
parent e8b2ef4b1c
commit 766058b473
  1. 5
      CHANGELOG.md
  2. 2
      app/pubspec.lock
  3. 2
      lib/widgets/raw_editor.dart
  4. 2
      pubspec.yaml

@ -123,4 +123,7 @@
* Fix static analysis errors.
## [1.0.2]
* Update toolbar in sample home page.
* Update toolbar in sample home page.
## [1.0.3]
* Fix issue that text is not displayed while typing [WEB].

@ -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

@ -886,7 +886,7 @@ class RawEditorState extends EditorState
}
_didChangeTextEditingValue() {
if (_keyboardVisible) {
if (_keyboardVisible || kIsWeb) {
_onChangeTextEditingValue();
} else {
requestKeyboard();

@ -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

Loading…
Cancel
Save