Fix size of dialog text

This commit is contained in:
vishnukvmd 2022-06-09 12:55:06 +05:30
parent 842e34f61b
commit 630afdc7f5

View file

@ -49,11 +49,11 @@ final lightThemeData = ThemeData(
dialogTheme: DialogTheme().copyWith(
backgroundColor: Color.fromRGBO(250, 250, 250, 1.0), //
titleTextStyle: TextStyle(
color: Colors.black, fontSize: 32, fontWeight: FontWeight.w600),
color: Colors.black, fontSize: 24, fontWeight: FontWeight.w600),
contentTextStyle: TextStyle(
fontFamily: 'Inter-Medium',
color: Colors.black,
fontSize: 14,
fontSize: 16,
fontWeight: FontWeight.w500),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8))),
inputDecorationTheme: InputDecorationTheme().copyWith(
@ -112,11 +112,11 @@ final darkThemeData = ThemeData(
dialogTheme: DialogTheme().copyWith(
backgroundColor: Color.fromRGBO(10, 15, 15, 1.0),
titleTextStyle: TextStyle(
color: Colors.white, fontSize: 32, fontWeight: FontWeight.w600),
color: Colors.white, fontSize: 24, fontWeight: FontWeight.w600),
contentTextStyle: TextStyle(
fontFamily: 'Inter-Medium',
color: Colors.white,
fontSize: 14,
fontSize: 16,
fontWeight: FontWeight.w500),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8))),
inputDecorationTheme: InputDecorationTheme().copyWith(