primaryTextButtonThemeData static method

TextButtonThemeData primaryTextButtonThemeData()

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),
    ),
  );
}