themeData property

ThemeData themeData

Implementation

ThemeData get themeData => ThemeData(
      brightness: brightness,
      cardColor: cardColor,
      dividerColor: dividerColor,
      scaffoldBackgroundColor: scaffoldBackgroundColor,
      backgroundColor: backgroundColor,
      iconTheme: IconThemeData(
        color: secondaryText,
        size: 24,
      ),
      appBarTheme: AppBarTheme(
        backgroundColor: backgroundColor,
        foregroundColor: primaryText,
        iconTheme: IconThemeData(color: secondaryText, size: 24),
      ),
    );