filledButtonTheme property

FilledButtonThemeData get filledButtonTheme

Implementation

FilledButtonThemeData get filledButtonTheme => FilledButtonThemeData(
  style: FilledButton.styleFrom(
    backgroundColor: colorScheme.primaryContainer,
    foregroundColor: colorScheme.onPrimaryContainer,
    textStyle: textTheme.labelLarge?.copyWith(fontWeight: FontWeight.w600),
    padding: EdgeInsets.symmetric(horizontal: 24, vertical: 12),
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
  ),
);