Ver código fonte

Merge branch 'flutter-master'

Anatoly Pulyaevskiy 5 anos atrás
pai
commit
915560f30c
1 arquivos alterados com 5 adições e 0 exclusões
  1. 5
    0
      packages/zefyr/lib/src/widgets/input.dart

+ 5
- 0
packages/zefyr/lib/src/widgets/input.dart Ver arquivo

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