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

pull/1070/head
Firdavsi Nurov 2 years ago committed by GitHub
parent d95c348530
commit 640c1b4990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      lib/src/widgets/raw_editor.dart

@ -237,8 +237,7 @@ class RawEditor extends StatefulWidget {
State<StatefulWidget> createState() => RawEditorState();
}
class RawEditorState extends EditorState
with
class RawEditorState extends EditorState with
AutomaticKeepAliveClientMixin<RawEditor>,
WidgetsBindingObserver,
TickerProviderStateMixin<RawEditor>,
@ -1422,6 +1421,16 @@ class RawEditorState extends EditorState
// this is needed for Scribble (Stylus input) in Apple platforms
// 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 {

Loading…
Cancel
Save