@@ -92,7 +92,7 @@ class ChipsInputState<T> extends State<ChipsInput<T>>
9292 StreamController <List <T >> _suggestionsStreamController;
9393 int _searchId = 0 ;
9494 TextEditingValue _value = TextEditingValue ();
95- TextEditingValue _receivedRemoteTextEditingValue;
95+ // TextEditingValue _receivedRemoteTextEditingValue;
9696 TextInputConnection _textInputConnection;
9797 SuggestionsBoxController _suggestionsBoxController;
9898 LayerLink _layerLink = LayerLink ();
@@ -115,7 +115,7 @@ class ChipsInputState<T> extends State<ChipsInput<T>>
115115 bool get _hasReachedMaxChips =>
116116 widget.maxChips != null && _chips.length >= widget.maxChips;
117117
118- FocusAttachment _focusAttachment;
118+ // FocusAttachment _focusAttachment;
119119 FocusNode _focusNode;
120120
121121 FocusNode get _effectiveFocusNode =>
@@ -127,7 +127,7 @@ class ChipsInputState<T> extends State<ChipsInput<T>>
127127 void initState () {
128128 super .initState ();
129129 _chips.addAll (widget.initialValue);
130- _focusAttachment = _effectiveFocusNode.attach (context);
130+ // _focusAttachment = _effectiveFocusNode.attach(context);
131131 _suggestionsBoxController = SuggestionsBoxController (context);
132132 _suggestionsStreamController = StreamController <List <T >>.broadcast ();
133133 _effectiveFocusNode.addListener (_handleFocusChanged);
@@ -285,14 +285,14 @@ class ChipsInputState<T> extends State<ChipsInput<T>>
285285 if (_hasInputConnection) {
286286 _textInputConnection.close ();
287287 _textInputConnection = null ;
288- _receivedRemoteTextEditingValue = null ;
288+ // _receivedRemoteTextEditingValue = null;
289289 }
290290 }
291291
292292 @override
293293 void updateEditingValue (TextEditingValue value) {
294294 // print("updateEditingValue FIRED with ${value.text}");
295- _receivedRemoteTextEditingValue = value;
295+ // _receivedRemoteTextEditingValue = value;
296296 var _oldTextEditingValue = _value;
297297 if (value.text != _oldTextEditingValue.text) {
298298 setState (() {
0 commit comments