You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using version 1.3.2.
There is major issue with this version that made MapLocationPicker not usable at all, every time I deactivate the MapLocationPicker I get the exception:
FlutterError (A MyTextEditingController was used after being disposed.
Once you have called dispose() on a MyTextEditingController, it can no longer be used.)
It doesn't matter if I put my own searchController:_myController or not.
The issue happens because searchController disposing is called twice:
Once by FormBuilderTypeAhead: @OverRide
void dispose() {
// Dispose the _typeAheadController when initState created it
super.dispose();
_typeAheadController.dispose();
}
And then by PlacesAutocomplete: @OverRide
void dispose() {
_controller.dispose();
_debounce.dispose();
super.dispose();
}
The text was updated successfully, but these errors were encountered:
I am using version 1.3.2.
There is major issue with this version that made MapLocationPicker not usable at all, every time I deactivate the MapLocationPicker I get the exception:
FlutterError (A MyTextEditingController was used after being disposed.
Once you have called dispose() on a MyTextEditingController, it can no longer be used.)
It doesn't matter if I put my own searchController:_myController or not.
The issue happens because searchController disposing is called twice:
Once by FormBuilderTypeAhead:
@OverRide
void dispose() {
// Dispose the _typeAheadController when initState created it
super.dispose();
_typeAheadController.dispose();
}
And then by PlacesAutocomplete:
@OverRide
void dispose() {
_controller.dispose();
_debounce.dispose();
super.dispose();
}
The text was updated successfully, but these errors were encountered: