Closed exoad closed 8 months ago
this could be attributed to the requestFocusOnTap which we can disable, but also disables visual confirmation of the tap (maybe wrap it in an inkwell?)
requestFocusOnTap
or according to here https://stackoverflow.com/a/76873454
or call FocusScope.of(context).unfocus(); before showing the dropdownMenu
or call
FocusScope.of(context).unfocus(); before showing the dropdownMenu
FocusScope.of(context).unfocus();
https://github.com/rebels2638/ScoutingApp2024/blob/63bf1aab98bbf21e6619020745cd1d2aa4fc56f6/lib/blobs/multi_select_blob.dart#L71-L105
fully implemented in https://github.com/rebels2638/ScoutingApp2024/commit/b062343ef3e40e3c8b80dc83af7a8104d583685d
this could be attributed to the
requestFocusOnTap
which we can disable, but also disables visual confirmation of the tap (maybe wrap it in an inkwell?)