group_button
group_button copied to clipboard
How to disable elevated effect when long press button
Is there any way to disable elevated effect when long press button
you can use buttonBuilder return custom button
GroupButton(
isRadio: true,
onSelected: (value, index, isSelected) {
print('$index button is selected');
},
buttonBuilder: (selected, value, context) {
return ElevatedButton(
style: ElevatedButton.styleFrom(
splashFactory: NoSplash.splashFactory,
shadowColor: Colors.transparent,
elevation: 0.0,
),
onPressed: () {},
child: Text(''),
);
},
),
Is there any way to disable elevated effect when long press button
see above