build method
Implementation
@override
Widget build(BuildContext context) {
return TextButton(
child: DefaultTextStyle(
textAlign: TextAlign.center,
style: context.themeData.textTheme.titleSmall!.copyWith(color: context.themeData.colorScheme.onPrimary),
child: child,
),
onPressed: onTap,
);
}