styleButton function
Implementation
ButtonStyle styleButton(Color color) {
return TextButton.styleFrom(
backgroundColor: color,
padding: const EdgeInsets.symmetric(
horizontal: 16.0,
),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(6),
),
),
);
}