瀏覽代碼

Upgraded to support latest master version of Flutter

Anatoly Pulyaevskiy 6 年之前
父節點
當前提交
adb5ea9f60
共有 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
 }