code reformatting and adding const everywhere

This commit is contained in:
asif
2025-08-12 11:47:10 +05:30
parent 8ae26e2f18
commit 82951b7919
6 changed files with 107 additions and 84 deletions

View File

@@ -14,7 +14,7 @@ class AppThemes {
default:
return ThemeData(primarySwatch: Colors.deepPurple);
}
}
}
static ThemeData getDarkTheme(ThemeType type) {
switch (type) {
@@ -29,4 +29,5 @@ class AppThemes {
return ThemeData.dark().copyWith(primaryColor: Colors.deepPurple);
}
}
}
}