datePickerButtonTheme static method

ThemeData datePickerButtonTheme(
  1. ThemeData theme
)

BASF date picker button theme

Implementation

static ThemeData datePickerButtonTheme(ThemeData theme) {
  return theme.copyWith(
    textButtonTheme: TextButtonThemeData(
      style: TextButton.styleFrom(
        foregroundColor: theme.primaryColor,
        shape: RoundedRectangleBorder(
          borderRadius: BasfThemes.defaultBorderRadius,
        ),
      ),
    ),
  );
}