initialized Dashboard Page

This commit is contained in:
Mohammad Salameh
2024-02-20 12:08:59 +03:00
parent 0c390a8062
commit d27063f149
98 changed files with 1704 additions and 824 deletions

View File

@ -16,19 +16,19 @@ ThemeData myTheme = ThemeData(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s35,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
displayMedium: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s20,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
displaySmall: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s16,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
///title
@ -36,19 +36,19 @@ ThemeData myTheme = ThemeData(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s48,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
titleMedium: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s30,
fontWeight: FontsManager.regular,
color: Colors.black,
fontWeight: FontsManager.bold,
color: ColorsManager.textPrimaryColor,
),
titleSmall: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s25,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
///body
@ -56,38 +56,38 @@ ThemeData myTheme = ThemeData(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s18,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
bodyMedium: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s14,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
bodySmall: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s12,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
labelLarge: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s18,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
labelMedium: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s16,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
labelSmall: TextStyle(
fontFamily: FontsManager.fontFamily,
fontSize: FontSize.s14,
fontWeight: FontsManager.regular,
color: Colors.black,
color: ColorsManager.textPrimaryColor,
),
),