getMaterialButton function
Implementation
TextButton getMaterialButton(
String text,
Color color,
void Function() onPressed,
) {
return TextButton(
child: Text(
text,
style: TextStyle(color: color),
),
onPressed: onPressed,
);
}