Upgrade version

pull/13/head
singerdmx 4 years ago
parent 28250d2c57
commit a31b80235e
  1. 5
      CHANGELOG.md
  2. 2
      app/pubspec.lock
  3. 4
      lib/widgets/editor.dart
  4. 2
      pubspec.yaml

@ -51,4 +51,7 @@
* Support checked/unchecked list.
## [0.1.8]
* Support font and size attributes.
* Support font and size attributes.
## [0.2.0]
* Add checked/unchecked list button in toolbar.

@ -82,7 +82,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.1"
version: "0.2.0"
flutter_test:
dependency: "direct dev"
description: flutter

@ -410,9 +410,9 @@ class _QuillEditorSelectionGestureDetectorBuilder
onSingleTapUp(TapUpDetails details) {
getEditor().hideToolbar();
bool tapping = _onTapping(details);
bool positionSelected = _onTapping(details);
if (delegate.getSelectionEnabled() && !tapping) {
if (delegate.getSelectionEnabled() && !positionSelected) {
switch (Theme.of(_state.context).platform) {
case TargetPlatform.iOS:
case TargetPlatform.macOS:

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

Loading…
Cancel
Save