From 176dbd5d598bec3218bb65805078ab011652ffa1 Mon Sep 17 00:00:00 2001 From: Ellet Date: Tue, 14 Nov 2023 03:27:39 +0300 Subject: [PATCH] Update raw_editor.dart --- lib/src/widgets/raw_editor/raw_editor.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/src/widgets/raw_editor/raw_editor.dart b/lib/src/widgets/raw_editor/raw_editor.dart index 9514651b..c0ecf52d 100644 --- a/lib/src/widgets/raw_editor/raw_editor.dart +++ b/lib/src/widgets/raw_editor/raw_editor.dart @@ -1,4 +1,6 @@ -import 'package:flutter/material.dart'; +import 'package:flutter/widgets.dart' + show BuildContext, State, StatefulWidget, Widget; +import 'package:meta/meta.dart' show immutable; import '../../models/config/raw_editor/configurations.dart'; import 'raw_editor_state.dart'; @@ -37,8 +39,9 @@ typedef QuillEditorContextMenuBuilder = Widget Function( QuillRawEditorState rawEditorState, ); +@immutable class QuillEditorGlyphHeights { - QuillEditorGlyphHeights( + const QuillEditorGlyphHeights( this.startGlyphHeight, this.endGlyphHeight, );