ソースを参照

Merge branch 'flutter-master'

Anatoly Pulyaevskiy 5 年 前
コミット
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
 }