flutter_chips_input icon indicating copy to clipboard operation
flutter_chips_input copied to clipboard

Error thrown on Unfocus using gesture detector

Open hey24sheep opened this issue 5 years ago • 0 comments

Reproduce : Wrap your package widget with this GestureDetector( behavior: HitTestBehavior.deferToChild,// opaque or other fail too onTap: () { // both fail FocusScope.of(context).requestFocus(new FocusNode()); // FocusScope.of(context).unfocus(); },

Possible Solution Give access to suggestionController so we can close it on demand.

Error I/flutter (26409): │ [Unsupported operation: Cannot add to a fixed-length list, #0 FixedLengthListMixin.addAll (dart:_internal/list.dart:38:5)

hey24sheep avatar May 13 '20 15:05 hey24sheep