df02cff668
- Renamed BottomNavigation to TenderBottomNavigation for clarity. - Updated TendersScreen to use TenderBottomNavigation. - Converted TendersScreen from StatelessWidget to StatefulWidget to manage tab state. - Added TabController for handling tab changes and improved layout with SafeArea and PageView.
19 lines
721 B
Dart
19 lines
721 B
Dart
class AssetsManager {
|
|
AssetsManager._();
|
|
|
|
// login page
|
|
static const logo = 'assets/pngs/logo.png';
|
|
static const userIcon = 'assets/svgs/user_icon.svg';
|
|
static const passwordIcon = 'assets/svgs/password_icon.svg';
|
|
static const passwordVisibility = 'assets/svgs/password_visibility.svg';
|
|
static const passwordVisibilityOff = 'assets/svgs/password_visibility.svg';
|
|
|
|
// tenders page
|
|
static const tenderLogo = 'assets/icons/tenderLogo.png';
|
|
static const like = 'assets/icons/like.svg';
|
|
static const dislike = 'assets/icons/dislike.svg';
|
|
static const closeCircle = 'assets/icons/close-circle.svg';
|
|
static const seFlag = 'assets/icons/SE.png';
|
|
static const location = 'assets/icons/location.svg';
|
|
}
|