INFRA: Set Up Project.

This commit is contained in:
2025-11-28 11:10:49 +05:00
commit c798279f7d
609 changed files with 77436 additions and 0 deletions

21
lib/constant/assets.dart Normal file
View File

@@ -0,0 +1,21 @@
class AppAssets {
static const assetFromImagesPath = 'assets/images/';
static const assetFromIconsPath = 'assets/icons/';
//images
static const onBoardingBG = '${assetFromImagesPath}onboarding_bg.png';
static const imgOnBoarding = '${assetFromImagesPath}img_onboarding.png';
//icons
static const icAppLogo = '${assetFromIconsPath}app_logo.png';
static const icArrowLeft = '${assetFromIconsPath}ic_arrow_left.png';
static const icMessage = '${assetFromIconsPath}ic_message.png';
static const icIndia = '${assetFromIconsPath}ic_india.png';
static const icArrowsClockwise = '${assetFromIconsPath}ic_arrows_clockwise.png';
static const icLocation = '${assetFromIconsPath}ic_location.png';
static const icPickup = '${assetFromIconsPath}ic_pickup.png';
static const icPlus = '${assetFromIconsPath}plus.svg';
}