Widget outlinedButton(VoidCallback? onPressed, {Color? color}) { return OutlinedButton( onPressed: onPressed, child: text(color: color), ); }