ZEtheme top-level property

ThemeData ZEtheme
getter/setter pair

Implementation

ThemeData ZEtheme = ThemeData(
    fontFamily: 'Poppins',
    backgroundColor: ZEColor.Background,
    bottomNavigationBarTheme: _bottomNavigationBarTheme,
    visualDensity: VisualDensity.adaptivePlatformDensity,
    bottomSheetTheme: BottomSheetThemeData(
      backgroundColor: ZEColor.White,
      modalBackgroundColor: Color(0x5508233D),
      shape: RoundedRectangleBorder(borderRadius: BorderRadius.only(topLeft: Radius.circular(32), topRight: Radius.circular(32)))
    ),
    accentColor: ZEColor.Green,
    appBarTheme: AppBarTheme(
        color: ZEColor.Background,
        elevation: 0
    ),
    //bottomAppBarTheme: BottomAppBarTheme
);