1
0
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:
Parker Lougheed
2023-02-01 02:20:51 -06:00
committed by GitHub
parent effc48c16b
commit 51f0a74820
2 changed files with 2 additions and 4 deletions

View File

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