Update deprecated fields

pull/1539/head
Ellet 1 year ago
parent 2973f03593
commit 79597ea642
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 3
      CHANGELOG.md
  2. 1
      README.md
  3. 30
      example/.metadata
  4. 6
      example/windows/CMakeLists.txt
  5. 7
      example/windows/flutter/CMakeLists.txt
  6. 3
      flutter_quill_extensions/CHANGELOG.md
  7. 2
      lib/src/models/config/shared_configurations.dart
  8. 2
      lib/src/models/config/toolbar/buttons/color.dart
  9. 6
      lib/src/models/rules/delete.dart
  10. 65
      lib/src/widgets/proxy.dart
  11. 1675
      lib/src/widgets/raw_editor/raw_editor.dart
  12. 13
      lib/src/widgets/raw_editor/raw_editor_state.dart
  13. 2
      lib/src/widgets/text_line.dart
  14. 2
      pubspec.yaml

@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## 8.5.6
* Support [Flutter 3.16](https://medium.com/flutter/whats-new-in-flutter-3-16-dba6cb1015d1)
## 8.5.5
* Now when opening dialogs by `QuillToolbar` you will not get an exception when you don't use `FlutterQuillLocalizations.delegate` in your `WidgetsApp`, `MaterialApp`, or `CupertinoApp`. The fix is for the `QuillToolbarSearchButton`, `QuillToolbarLinkStyleButton`, and `QuillToolbarColorButton` buttons

@ -87,7 +87,6 @@ dependencies:
git: https://github.com/singerdmx/flutter-quill.git
```
>
> Note: At this time, we are making too many changes to the library, and you might see a new version almost every day
>

@ -4,7 +4,7 @@
# This file should be version controlled and should not be manually edited.
version:
revision: "d211f42860350d914a5ad8102f9ec32764dc6d06"
revision: "db7ef5bf9f59442b0e200a90587e8fa5e0c6336a"
channel: "stable"
project_type: app
@ -13,26 +13,26 @@ project_type: app
migration:
platforms:
- platform: root
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
- platform: android
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
- platform: ios
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
- platform: linux
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
- platform: macos
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
- platform: web
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
- platform: windows
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
# User provided section

@ -87,6 +87,12 @@ if(PLUGIN_BUNDLED_LIBRARIES)
COMPONENT Runtime)
endif()
# Copy the native assets provided by the build.dart from all packages.
set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/windows/")
install(DIRECTORY "${NATIVE_ASSETS_DIR}"
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
# Fully re-copy the assets directory on each build to avoid having stale files
# from a previous install.
set(FLUTTER_ASSET_DIR_NAME "flutter_assets")

@ -10,6 +10,11 @@ include(${EPHEMERAL_DIR}/generated_config.cmake)
# https://github.com/flutter/flutter/issues/57146.
set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper")
# Set fallback configurations for older versions of the flutter tool.
if (NOT DEFINED FLUTTER_TARGET_PLATFORM)
set(FLUTTER_TARGET_PLATFORM "windows-x64")
endif()
# === Flutter Library ===
set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll")
@ -92,7 +97,7 @@ add_custom_command(
COMMAND ${CMAKE_COMMAND} -E env
${FLUTTER_TOOL_ENVIRONMENT}
"${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat"
windows-x64 $<CONFIG>
${FLUTTER_TARGET_PLATFORM} $<CONFIG>
VERBATIM
)
add_custom_target(flutter_assemble DEPENDS

@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## 0.6.11
* Support [Flutter 3.16](https://medium.com/flutter/whats-new-in-flutter-3-16-dba6cb1015d1)
## 0.6.10
* Update deprecated members from `flutter_quill`
* Update doc and `README.md`

@ -1,9 +1,9 @@
import 'package:equatable/equatable.dart';
import 'package:flutter/material.dart' show Color, Colors, Locale;
import '../themes/quill_dialog_theme.dart';
import './editor/configurations.dart' show QuillEditorConfigurations;
import './toolbar/configurations.dart' show QuillToolbarConfigurations;
import '../themes/quill_dialog_theme.dart';
import 'others/animations.dart';
export './others/animations.dart';

@ -1,7 +1,7 @@
import 'package:flutter/widgets.dart' show Color;
import './../../shared_configurations.dart' show QuillSharedConfigurations;
import '../../../../widgets/controller.dart';
import './../../shared_configurations.dart' show QuillSharedConfigurations;
import 'base.dart';
class QuillToolbarColorButtonExtraOptions

@ -97,10 +97,8 @@ class PreserveLineStyleOnMergeRule extends DeleteRule {
continue;
}
var attributes = op.attributes == null
? null
: op.attributes!.map<String, dynamic>(
(key, dynamic value) => MapEntry<String, dynamic>(key, null));
var attributes = op.attributes?.map<String, dynamic>(
(key, dynamic value) => MapEntry<String, dynamic>(key, null));
if (isNotPlain) {
attributes ??= <String, dynamic>{};

@ -129,22 +129,24 @@ class RenderEmbedProxy extends RenderProxyBox implements RenderContentProxyBox {
class RichTextProxy extends SingleChildRenderObjectWidget {
/// Child argument should be an instance of RichText widget.
const RichTextProxy(
{required RichText super.child,
required this.textStyle,
required this.textAlign,
required this.textDirection,
required this.locale,
required this.strutStyle,
this.textScaleFactor = 1.0,
this.textWidthBasis = TextWidthBasis.parent,
this.textHeightBehavior,
super.key});
const RichTextProxy({
required RichText super.child,
required this.textStyle,
required this.textAlign,
required this.textDirection,
required this.locale,
required this.strutStyle,
// TODO: This might needs to be updated, previous value was 1.0 using `textScaleFactor`
this.textScaler = const TextScaler.linear(1),
this.textWidthBasis = TextWidthBasis.parent,
this.textHeightBehavior,
super.key,
});
final TextStyle textStyle;
final TextAlign textAlign;
final TextDirection textDirection;
final double textScaleFactor;
final TextScaler textScaler;
final Locale locale;
final StrutStyle strutStyle;
final TextWidthBasis textWidthBasis;
@ -152,16 +154,8 @@ class RichTextProxy extends SingleChildRenderObjectWidget {
@override
RenderParagraphProxy createRenderObject(BuildContext context) {
return RenderParagraphProxy(
null,
textStyle,
textAlign,
textDirection,
textScaleFactor,
strutStyle,
locale,
textWidthBasis,
textHeightBehavior);
return RenderParagraphProxy(null, textStyle, textAlign, textDirection,
textScaler, strutStyle, locale, textWidthBasis, textHeightBehavior);
}
@override
@ -171,7 +165,7 @@ class RichTextProxy extends SingleChildRenderObjectWidget {
..textStyle = textStyle
..textAlign = textAlign
..textDirection = textDirection
..textScaleFactor = textScaleFactor
..textScaler = textScaler
..locale = locale
..strutStyle = strutStyle
..textWidthBasis = textWidthBasis
@ -186,20 +180,21 @@ class RenderParagraphProxy extends RenderProxyBox
TextStyle textStyle,
TextAlign textAlign,
TextDirection textDirection,
double textScaleFactor,
TextScaler textScaler,
StrutStyle strutStyle,
Locale locale,
TextWidthBasis textWidthBasis,
TextHeightBehavior? textHeightBehavior,
) : _prototypePainter = TextPainter(
text: TextSpan(text: ' ', style: textStyle),
textAlign: textAlign,
textDirection: textDirection,
textScaleFactor: textScaleFactor,
strutStyle: strutStyle,
locale: locale,
textWidthBasis: textWidthBasis,
textHeightBehavior: textHeightBehavior);
text: TextSpan(text: ' ', style: textStyle),
textAlign: textAlign,
textDirection: textDirection,
textScaler: textScaler,
strutStyle: strutStyle,
locale: locale,
textWidthBasis: textWidthBasis,
textHeightBehavior: textHeightBehavior,
);
final TextPainter _prototypePainter;
@ -227,11 +222,11 @@ class RenderParagraphProxy extends RenderProxyBox
markNeedsLayout();
}
set textScaleFactor(double value) {
if (_prototypePainter.textScaleFactor == value) {
set textScaler(TextScaler value) {
if (_prototypePainter.textScaler == value) {
return;
}
_prototypePainter.textScaleFactor = value;
_prototypePainter.textScaler = value;
markNeedsLayout();
}

File diff suppressed because it is too large Load Diff

@ -133,6 +133,9 @@ class QuillRawEditorState extends EditorState
onSelectAll: selectAllEnabled
? () => selectAll(SelectionChangedCause.toolbar)
: null,
onLookUp: null,
onSearchWeb: null,
onShare: null,
);
}
@ -1612,6 +1615,14 @@ class QuillRawEditorState extends EditorState
}
@override
// TODO: implement liveTextInputEnabled
bool get liveTextInputEnabled => false;
@override
bool get lookUpEnabled => false;
@override
bool get searchWebEnabled => false;
@override
bool get shareEnabled => false;
}

@ -172,7 +172,7 @@ class _TextLineState extends State<TextLine> {
textAlign: textAlign,
textDirection: widget.textDirection,
strutStyle: strutStyle,
textScaleFactor: MediaQuery.textScaleFactorOf(context),
textScaler: MediaQuery.textScalerOf(context),
);
return RichTextProxy(
textStyle: textSpan.style!,

@ -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.5.5
version: 8.5.6
homepage: https://1o24bbs.com/c/bulletjournal/108
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save