primaryTextButtonThemeData static method
The primary TextButtonThemeData for the light theme.
Implementation
static TextButtonThemeData primaryTextButtonThemeData() {
return TextButtonThemeData(
style: TextButton.styleFrom(
foregroundColor: LightThemeColors.colorScheme.onSurface,
textStyle: AppTypography.light().labelLarge,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)),
padding: const EdgeInsets.all(12),
),
);
}