presentation_constants_in_flutter
static const Color primaryColor = Color(0xFF2196F3); static const Color secondaryColor = Color(0xFFFFC107); static const Color backgroundColor = Color(0xFFFFFFFF); static const Color textColor = Color(0xFF000000);static const TextStyle titleTextStyle = TextStyle( fontSize: 24, fontWeight: FontWeight.bold, ); static const TextStyle bodyTextStyle = TextStyle( fontSize: 16, );final lightTheme = ThemeData( primaryColor: primaryColor, accentColor: secondaryColor, backgroundColor: backgroundColor, textTheme: TextTheme( headline6: titleTextStyle, bodyText2: bodyTextStyle, ), );static const double defaultMargin = 16.0; static const double buttonHeight = 48.0; static const double borderRadius = 8.0;
Last updated