Prepare to release 8.6.4

pull/1564/head
Ellet 1 year ago
parent 211965e24f
commit ccfe151ba4
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 4
      CHANGELOG.md
  2. 19
      lib/src/models/config/raw_editor/configurations.dart
  3. 10
      lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart
  4. 2
      pubspec.yaml

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
## 8.6.4
* The default value of `keyboardAppearance` for the iOS will be the one from the App/System theme mode instead of always using the `Brightness.light`
* Fix typos in `README.md`
## 8.6.3
* Update the minimum flutter version to `3.16.0`

@ -64,7 +64,7 @@ class QuillRawEditorConfigurations extends Equatable {
this.expands = false,
this.isOnTapOutsideEnabled = true,
this.onTapOutside,
this.keyboardAppearance = Brightness.light,
this.keyboardAppearance,
this.enableInteractiveSelection = true,
this.scrollPhysics,
this.linkActionPickerDelegate = defaultLinkActionPickerDelegate,
@ -214,8 +214,21 @@ class QuillRawEditorConfigurations extends Equatable {
///
/// This setting is only honored on iOS devices.
///
/// Defaults to [Brightness.light].
final Brightness keyboardAppearance;
/// Defaults to Material/Cupertino App Brightness.
/// If you are using Custom widget app then we will use the system
/// theme mode as a default.
///
/// It will run using the following logic:
///
/// ```dart
///
/// widget.configurations.keyboardAppearance ??
/// CupertinoTheme.maybeBrightnessOf(context) ??
/// MediaQuery.maybePlatformBrightnessOf(context) ??
/// Theme.of(context).brightness
///
/// ```
final Brightness? keyboardAppearance;
/// If true, then long-pressing this TextField will select text and show the
/// cut/copy/paste menu, and tapping will move the text caret.

@ -1,9 +1,12 @@
import 'dart:ui';
import 'dart:ui' show lerpDouble;
import 'package:flutter/animation.dart' show Curves;
import 'package:flutter/cupertino.dart' show CupertinoTheme;
import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:flutter/material.dart' show Theme;
import 'package:flutter/scheduler.dart' show SchedulerBinding;
import 'package:flutter/services.dart';
import 'package:flutter/widgets.dart' show MediaQuery;
import '../../models/documents/document.dart';
import '../../utils/delta.dart';
@ -59,7 +62,10 @@ mixin RawEditorStateTextInputClientMixin on EditorState
readOnly: widget.configurations.isReadOnly,
inputAction: widget.configurations.textInputAction,
enableSuggestions: !widget.configurations.isReadOnly,
keyboardAppearance: widget.configurations.keyboardAppearance,
keyboardAppearance: widget.configurations.keyboardAppearance ??
CupertinoTheme.maybeBrightnessOf(context) ??
MediaQuery.maybePlatformBrightnessOf(context) ??
Theme.of(context).brightness,
textCapitalization: widget.configurations.textCapitalization,
allowedMimeTypes:
widget.configurations.contentInsertionConfiguration == null

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.
version: 8.6.3
version: 8.6.4
homepage: https://1o24bbs.com/c/bulletjournal/108
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save