Browse Source

Merge branch 'flutter-master'

Anatoly Pulyaevskiy 5 years ago
parent
commit
915560f30c
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      packages/zefyr/lib/src/widgets/input.dart

+ 5
- 0
packages/zefyr/lib/src/widgets/input.dart View File

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
 }