Closed Bockos closed 2 years ago
I also find this problem, and want to know when to merge this bug into newest version?
It's duplicate of https://github.com/akbarpulatov/flutter_awesome_select/issues/13
Issue is fixed on 834321de79dbb2b61befcfa8ddd97c90d2569c55
Hi,
Default selected value is now nullable and SmartSelect.multiple is not nullable. I'm not able to handle that, but I fixed this with doing like this. SmartSelect<String?>.multiple. Because if I dont, by default it shows this error;
Now the issue is fixed and it shows the modal by fixing those 2 lines too; List<String?> _car = []; onChange: (selected) => setState(() => _car = selected!.value!),
All is fine, but they all not working with choiceGrouped.