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. * Fix static analysis errors.
## [1.0.2] ## [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: ".." path: ".."
relative: true relative: true
source: path source: path
version: "1.0.2" version: "1.0.3"
flutter_test: flutter_test:
dependency: "direct dev" dependency: "direct dev"
description: flutter description: flutter

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

@ -1,6 +1,6 @@
name: flutter_quill name: flutter_quill
description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App. description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App.
version: 1.0.2 version: 1.0.3
#author: bulletjournal #author: bulletjournal
homepage: https://bulletjournal.us/home/index.html homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill.git repository: https://github.com/singerdmx/flutter-quill.git

Loading…
Cancel
Save