Преглед изворни кода

Merge branch 'flutter-master'

Anatoly Pulyaevskiy пре 6 година
родитељ
комит
915560f30c
1 измењених фајлова са 5 додато и 0 уклоњено
  1. 5
    0
      packages/zefyr/lib/src/widgets/input.dart

+ 5
- 0
packages/zefyr/lib/src/widgets/input.dart Прегледај датотеку

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