StadiumElevatedButton function
高度 比 FilledButton 小
Implementation
Widget StadiumElevatedButton({required Widget child, VoidCallback? onPressed, Color? fillColor}) {
return ElevatedButton(
onPressed: onPressed,
child: child,
style: ElevatedButton.styleFrom(shape: StadiumBorder(), backgroundColor: fillColor),
);
}