invest screen ui

This commit is contained in:
jayesh
2024-06-10 18:49:10 +05:30
parent 0b99cde575
commit dd5181af94
27 changed files with 1119 additions and 18 deletions

View File

@@ -61,4 +61,7 @@ class RouteName {
//change password
static const String changePasswordScreen = "changePasswordScreen";
//invest
static const String investDetailScreen = "investDetailScreen";
}

View File

@@ -3,6 +3,7 @@
import 'package:go_router/go_router.dart';
import 'package:tanami_app/core/routes/route_name.dart';
import 'package:tanami_app/features/MainScreens/Academy/presentation/pages/academy_details_screen.dart';
import 'package:tanami_app/features/MainScreens/Invest/presentation/pages/invest_details_screen.dart';
import 'package:tanami_app/features/MainScreens/Portfolio/presentation/pages/portfolio_details_screen.dart';
import 'package:tanami_app/features/MainScreens/Wallet/presentation/pages/walletDetails.dart';
@@ -193,6 +194,13 @@ final goRouter = GoRouter(
return const ChangePasswordScreen();
},
),
GoRoute(
name: RouteName.investDetailScreen,
path: RouteName.investDetailScreen,
builder: (context, state) {
return const InvestDetailsScreen();
},
),
],
),
],

View File

@@ -83,4 +83,11 @@ class AppColor {
//Delete Account Color
static const Color descriptionText = Color(0xFFC6C6C6);
//Invest Color
static const Color investKycCardColor = Color(0xFFEEF5FA);
static const Color investKycBorderColor = Color(0xFFB0D3EF);
static const Color investKycBoxShadow1Color = Color(0xFF90D4FF);
static const Color investKycBoxShadow2Color = Color(0xA0DAF0FF);
static const Color investTextColor = Color(0xFF066123);
}

View File

@@ -102,4 +102,14 @@ class AppImages {
//Language
static const String infoIcon =
'assets/images/language_screen/png/info_icon.png';
//Invest
static const String investIcon =
'assets/images/invest_screen/svg/shield_done.svg';
static const String scannerIcon =
'assets/images/invest_screen/svg/scanner.svg';
static const String ticketIcon = 'assets/images/invest_screen/svg/ticket.svg';
static const String walletIcon = 'assets/images/invest_screen/svg/wallet.svg';
static const String timeSquareIcon =
'assets/images/invest_screen/svg/time_square.svg';
}

View File

@@ -189,4 +189,19 @@ class AppText {
static const String theRequestWillBeProcessed =
"The request will be processed within 72 hours";
static const closeText = "Close";
//Invest
static const String investText = "Invest";
static const String availableText = "Available";
static const String closedText = "Closed";
static const String completeYourVerification = "Complete your verification";
static const String verifyYourAccountInUnderMinutesToStartInvestingToday =
"Verify your account in under 10 minutes to start investing today!";
static const String closingDateText = "Closing Date";
static const String fundedText = "funded";
static const String sponsorNameText = "Sponsor name";
static const String estimatedReturnText = "Estimated return";
static const String holdingPeriodText = "Holding period";
static const String minimumInvestmentText = "Minimum investment";
static const String keyMeritsIOfnvestmentText = "Key Merits of Investment";
}