mobileTheme property

ThemeData get mobileTheme

Implementation

ThemeData get mobileTheme {
  const Border(top: BorderSide());

  return ThemeData(
    colorScheme: colorScheme,
    useMaterial3: false,
    scaffoldBackgroundColor: colorScheme.background,
    textTheme: mobileTypography.textTheme,
    appBarTheme: const AppBarTheme(elevation: 0),
    elevatedButtonTheme: elevatedButtonTheme,
    outlinedButtonTheme: outlinedButtonTheme,
    textButtonTheme: textButtonTheme,
    cardTheme: cardTheme,
    inputDecorationTheme: inputDecorationTheme,
    dialogTheme: dialogTheme,
  );
}