StadiumOutlinedButton function
Implementation
Widget StadiumOutlinedButton({required Widget child, VoidCallback? onPressed}) {
return OutlinedButton(
onPressed: onPressed,
child: child,
style: OutlinedButton.styleFrom(shape: StadiumBorder()),
);
}