fix Error: The non-abstract class 'RawEditorState' is missing implementations for these members

pull/1041/head
Firdavsi 2 years ago
parent addc1dc8f6
commit 8f125d9cae
  1. 13
      lib/src/widgets/raw_editor.dart

@ -237,8 +237,7 @@ class RawEditor extends StatefulWidget {
State<StatefulWidget> createState() => RawEditorState(); State<StatefulWidget> createState() => RawEditorState();
} }
class RawEditorState extends EditorState class RawEditorState extends EditorState with
with
AutomaticKeepAliveClientMixin<RawEditor>, AutomaticKeepAliveClientMixin<RawEditor>,
WidgetsBindingObserver, WidgetsBindingObserver,
TickerProviderStateMixin<RawEditor>, TickerProviderStateMixin<RawEditor>,
@ -1422,6 +1421,16 @@ class RawEditorState extends EditorState
// this is needed for Scribble (Stylus input) in Apple platforms // this is needed for Scribble (Stylus input) in Apple platforms
// and this package does not implement this feature // and this package does not implement this feature
} }
@override
void didChangeInputControl(TextInputControl? oldControl, TextInputControl? newControl) {
// TODO: implement didChangeInputControl
}
@override
void performSelector(String selectorName) {
// TODO: implement performSelector
}
} }
class _Editor extends MultiChildRenderObjectWidget { class _Editor extends MultiChildRenderObjectWidget {

Loading…
Cancel
Save