defaultThemeData property

ThemeData defaultThemeData
final

Implementation

static final ThemeData defaultThemeData = ThemeData(
  // Define your default theme values here.
  primaryColor: ColorConstant.primaryColor,
  appBarTheme: AppBarTheme(
    backgroundColor: ColorConstant.primaryColor,
  ),
  fontFamily: "Poppins",
  package: Constants.packageName,
  textTheme: const TextTheme(
    displayMedium: TextStyle(
      fontSize: 14,
      fontWeight: FontWeight.w400,
    ),
  ),
  disabledColor: ColorConstant.tfDisabledColor,
  // focusColor:
  // Add more default theme properties here.
);