@@ -3,23 +3,45 @@ class AppAssets {
33 static const String _iconsRoot = 'assets/app/icons' ;
44 static const String _imagesRoot = 'assets/app/images' ;
55 static const String _illustrationsRoot = 'assets/app/illustrations' ;
6+ static const String _platformIconRoot = '$_imagesRoot /platforms' ;
67
78 // Icons
89 static const String arrowForward = '$_iconsRoot /arrow-forward.svg' ;
910 static const String eyeOn = '$_iconsRoot /eye-on.svg' ;
1011 static const String eyeOff = '$_iconsRoot /eye-off.svg' ;
1112 static const String lock = '$_iconsRoot /lock.svg' ;
1213 static const String person = '$_iconsRoot /person.svg' ;
14+ static const String filter = '$_iconsRoot /filter.svg' ;
15+ static const String bell = '$_iconsRoot /bell.svg' ;
16+ static const String selectedBell = '$_iconsRoot /selected_bell.svg' ;
17+ static const String clock = '$_iconsRoot /clock.svg' ;
18+ static const String trueRadioButton = '$_iconsRoot /true_radio_button.svg' ;
19+ static const String falseRadioButton = '$_iconsRoot /false_radio_button.svg' ;
1320
1421 // Images
1522 static const String circle1 = '$_imagesRoot /circle1.svg' ;
1623 static const String circle2 = '$_imagesRoot /circle2.svg' ;
1724 static const String triangle = '$_imagesRoot /triangle.svg' ;
25+ static const String emptyState = '$_imagesRoot /empty_feed.svg' ;
1826
1927 // Illustrations
2028 static const String contestCardIllustration =
2129 '$_illustrationsRoot /contest_card.png' ;
2230 static const String feedCardIllustration =
2331 '$_illustrationsRoot /feed_card.png' ;
2432 static const String profileIllustration = '$_illustrationsRoot /profile.png' ;
33+
34+ /// BottomNavigationBar Icons
35+ static const String feed = '$_iconsRoot /feed.svg' ;
36+ static const String contest = '$_iconsRoot /contest.svg' ;
37+ static const String search = '$_iconsRoot /search.svg' ;
38+ static const String profile = '$_iconsRoot /profile.svg' ;
39+
40+ /// Platform Icons
41+ static const String codechef = '$_platformIconRoot /codechef.png' ;
42+ static const String codeforces = '$_platformIconRoot /codeforces.png' ;
43+ static const String hackerRank = '$_platformIconRoot /hacker_rank.png' ;
44+ static const String hackerEarth = '$_platformIconRoot /hacker_earth.png' ;
45+ static const String spoj = '$_platformIconRoot /spoj.png' ;
46+ static const String otherPlatform = '$_platformIconRoot /other_platform.jpg' ;
2547}
0 commit comments