Procházet zdrojové kódy

Upgraded to support latest master version of Flutter

Anatoly Pulyaevskiy před 6 roky
rodič
revize
adb5ea9f60
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. 5
    0
      packages/zefyr/lib/src/widgets/input.dart

+ 5
- 0
packages/zefyr/lib/src/widgets/input.dart Zobrazit soubor

163
   final List<TextEditingValue> _sentRemoteValues = [];
163
   final List<TextEditingValue> _sentRemoteValues = [];
164
   TextInputConnection _textInputConnection;
164
   TextInputConnection _textInputConnection;
165
   TextEditingValue _lastKnownRemoteTextEditingValue;
165
   TextEditingValue _lastKnownRemoteTextEditingValue;
166
+
167
+  @override
168
+  void updateFloatingCursor(RawFloatingCursorPoint point) {
169
+    // TODO: implement updateFloatingCursor
170
+  }
166
 }
171
 }