|
|
@ -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 { |
|
|
|