mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Mixin TextInputClient to include insertContent implementation (#1618)
This commit is contained in:
@@ -40,8 +40,7 @@ class BasicTextInputClient extends StatefulWidget {
|
||||
}
|
||||
|
||||
class BasicTextInputClientState extends State<BasicTextInputClient>
|
||||
with TextSelectionDelegate
|
||||
implements DeltaTextInputClient {
|
||||
with TextSelectionDelegate, TextInputClient, DeltaTextInputClient {
|
||||
final GlobalKey _textKey = GlobalKey();
|
||||
late AppStateWidgetState manager;
|
||||
final ClipboardStatusNotifier? _clipboardStatus =
|
||||
|
||||
@@ -50,8 +50,7 @@ declare -ar PROJECT_NAMES=(
|
||||
"provider_counter"
|
||||
"provider_shopper"
|
||||
"simplistic_calculator"
|
||||
# TODO(DomesticMouse): https://github.com/flutter/samples/issues/1616
|
||||
# "simplistic_editor"
|
||||
"simplistic_editor"
|
||||
"testing_app"
|
||||
"veggieseasons"
|
||||
"web/_tool"
|
||||
|
||||
Reference in New Issue
Block a user