File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
lib/src/widgets/flutter_chips_input Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ class ChipsInputState<T> extends State<ChipsInput<T>>
288
288
Future .delayed (const Duration (milliseconds: 300 ), () {
289
289
WidgetsBinding .instance.addPostFrameCallback ((_) async {
290
290
final renderBox = context.findRenderObject () as RenderBox ;
291
- await Scrollable .of (context)? .position.ensureVisible (renderBox);
291
+ await Scrollable .of (context).position.ensureVisible (renderBox);
292
292
});
293
293
});
294
294
}
@@ -490,4 +490,11 @@ class ChipsInputState<T> extends State<ChipsInput<T>>
490
490
491
491
@override
492
492
void removeTextPlaceholder () {}
493
+
494
+ @override
495
+ void didChangeInputControl (
496
+ TextInputControl ? oldControl, TextInputControl ? newControl) {}
497
+
498
+ @override
499
+ void performSelector (String selectorName) {}
493
500
}
You can’t perform that action at this time.
0 commit comments