buildTheme method

ThemeData buildTheme()

Implementation

ThemeData buildTheme() {
  return ThemeData(
    extensions: <ThemeExtension<dynamic>>[this],
    primaryColor: colors.success,
    appBarTheme: AppBarTheme(
      backgroundColor: colors.information,
    ),
    textTheme: TextTheme(
      titleMedium: fontStyle.titleMedium,
      bodyMedium: fontStyle.bodyMedium,
    ),
  );
}