mThemeData property

ThemeData mThemeData
getter/setter pair

Implementation

static ThemeData mThemeData = ThemeData(
  brightness: Brightness.dark,
  scaffoldBackgroundColor: Colors.white,
  primaryColor: AppColors.color_161F2F,
  textTheme: TextTheme(
    bodyMedium: TextStyle(color: AppColors.color_2c355c, fontSize: 13.px)
  ),
  appBarTheme: AppBarTheme(
    centerTitle: true,
    elevation: 0,
  ),
  bottomNavigationBarTheme: BottomNavigationBarThemeData(
    backgroundColor: AppColors.color_1F2B42,
    selectedItemColor: AppColors.color_2A6AE7,
    elevation: 0,
    type: BottomNavigationBarType.fixed,
    unselectedItemColor: AppColors.color_CFD2E7,
  ),
  highlightColor: Colors.transparent,
  splashColor: Colors.transparent,
  indicatorColor: Colors.red,
  tabBarTheme: TabBarTheme(
    unselectedLabelColor: Colors.white,
    labelColor: Colors.red,
  ),
);