getTheme static method
Returns general theme data.
Implementation
static ThemeData getTheme() {
return ThemeData(
useMaterial3: true,
colorScheme: AliceTheme._getColorScheme(),
dividerColor: Colors.transparent,
buttonTheme: const ButtonThemeData(
buttonColor: lightRed,
textTheme: ButtonTextTheme.primary,
),
);
}