Skip to content

Commit

Permalink
3+
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellet committed Dec 5, 2023
1 parent 0d39d9d commit d67bd71
Show file tree
Hide file tree
Showing 9 changed files with 271 additions and 279 deletions.
10 changes: 1 addition & 9 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ dependencies:
cross_file: ^0.3.3+6
cached_network_image: ^3.3.0

gal_linux:
git:
url: https://github.com/freshtechtips/gal-linux.git
ref: main
gal_linux: ^0.0.1-dev

# Bloc libraries
bloc: ^8.1.2
Expand Down Expand Up @@ -60,11 +57,6 @@ dependency_overrides:
quill_html_converter:
path: ../packages/quill_html_converter

gal:
git:
url: https://github.com/natsuk4ze/gal.git
ref: plugin_platform_interface


dev_dependencies:
flutter_test:
Expand Down
2 changes: 1 addition & 1 deletion lib/flutter_quill.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export 'src/models/structs/vertical_spacing.dart';
export 'src/models/themes/quill_dialog_theme.dart';
export 'src/models/themes/quill_icon_theme.dart';
export 'src/utils/embeds.dart';
export 'src/widgets/editor/editor.dart';
export 'src/widgets/others/controller.dart';
export 'src/widgets/others/cursor.dart';
export 'src/widgets/others/default_styles.dart';
export 'src/widgets/editor/editor.dart';
export 'src/widgets/others/embeds.dart';
export 'src/widgets/others/link.dart'
show LinkActionPickerDelegate, LinkMenuAction;
Expand Down
4 changes: 2 additions & 2 deletions lib/src/models/config/editor/configurations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import 'package:flutter/material.dart'
import 'package:flutter/widgets.dart';
import 'package:meta/meta.dart' show experimental;

import '../../../widgets/editor/editor.dart';
import '../../../widgets/editor/editor_builder.dart';
import '../../../widgets/others/controller.dart';
import '../../../widgets/others/default_styles.dart';
import '../../../widgets/others/delegate.dart';
import '../../../widgets/editor/editor.dart';
import '../../../widgets/editor/editor_builder.dart';
import '../../../widgets/others/embeds.dart';
import '../../../widgets/others/link.dart';
import '../../../widgets/raw_editor/raw_editor.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import 'buttons/font_family_configurations.dart';
import 'buttons/font_size_configurations.dart';
import 'buttons/history_configurations.dart';
import 'buttons/indent_configurations.dart';
import 'buttons/link_style_configurations.dart';
import 'buttons/link_style2_configurations.dart';
import 'buttons/link_style_configurations.dart';
import 'buttons/search_configurations.dart';
import 'buttons/select_alignment_configurations.dart';
import 'buttons/select_header_style_configurations.dart';
Expand All @@ -33,8 +33,8 @@ export 'buttons/font_family_configurations.dart';
export 'buttons/font_size_configurations.dart';
export 'buttons/history_configurations.dart';
export 'buttons/indent_configurations.dart';
export 'buttons/link_style_configurations.dart';
export 'buttons/link_style2_configurations.dart';
export 'buttons/link_style_configurations.dart';
export 'buttons/search_configurations.dart';
export 'buttons/select_alignment_configurations.dart';
export 'buttons/select_header_style_configurations.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widgets/editor/editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import '../others/cursor.dart';
import '../others/delegate.dart';
import '../others/embeds.dart';
import '../others/float_cursor.dart';
import '../raw_editor/raw_editor.dart';
import '../others/text_selection.dart';
import '../raw_editor/raw_editor.dart';
import '../utils/provider.dart';
import 'editor_builder.dart';

Expand Down
8 changes: 4 additions & 4 deletions lib/src/widgets/others/text_block.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import '../../models/documents/nodes/block.dart';
import '../../models/documents/nodes/line.dart';
import '../../models/structs/vertical_spacing.dart';
import '../../utils/delta.dart';
import '../editor/editor.dart';
import '../style_widgets/bullet_point.dart';
import '../style_widgets/checkbox_point.dart';
import '../style_widgets/number_point.dart';
import 'box.dart';
import 'controller.dart';
import 'cursor.dart';
import 'default_styles.dart';
import 'delegate.dart';
import '../editor/editor.dart';
import 'link.dart';
import '../style_widgets/bullet_point.dart';
import '../style_widgets/checkbox_point.dart';
import '../style_widgets/number_point.dart';
import 'text_line.dart';
import 'text_selection.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/widgets/raw_editor/raw_editor_render_object.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart' show ViewportOffset;

import '../../models/documents/document.dart';
import '../others/cursor.dart';
import '../editor/editor.dart';
import '../others/cursor.dart';

class QuilRawEditorMultiChildRenderObject extends MultiChildRenderObjectWidget {
const QuilRawEditorMultiChildRenderObject({
Expand Down
4 changes: 2 additions & 2 deletions lib/src/widgets/raw_editor/raw_editor_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ import '../../utils/cast.dart';
import '../../utils/delta.dart';
import '../../utils/embeds.dart';
import '../../utils/platform.dart';
import '../editor/editor.dart';
import '../others/controller.dart';
import '../others/cursor.dart';
import '../others/default_styles.dart';
import '../editor/editor.dart';
import '../others/keyboard_listener.dart';
import '../others/link.dart';
import '../others/proxy.dart';
import 'quill_single_child_scroll_view.dart';
import '../others/text_block.dart';
import '../others/text_line.dart';
import '../others/text_selection.dart';
import 'quill_single_child_scroll_view.dart';
import 'raw_editor.dart';
import 'raw_editor_actions.dart';
import 'raw_editor_render_object.dart';
Expand Down
Loading

0 comments on commit d67bd71

Please sign in to comment.