multi_select_flutter
multi_select_flutter copied to clipboard
how to change multi select dialog button height
I can't find how to change dialog button height. what i tried is wrapping it with container but didn't see any effect:
Container(
height: 60,
child: MultiSelectDialogField<String>(
.
.
:
.)
Hi, I was looking for the same solutions and what I found was Text height in style property. Hope it helps u:
return MultiSelectDialogField<String>(
title: const Text('Selecione as opções'),
cancelText: const Text('Cancelar'),
buttonIcon: const Icon(
Icons.keyboard_arrow_down_outlined,
),
buttonText: const Text(
'Selecione as opções',
style: TextStyle(height: 2.5),
),....