deposit done 2
This commit is contained in:
@@ -34,6 +34,7 @@ class RouteName {
|
||||
|
||||
//Wallet details
|
||||
static const String walletDetails = 'walletDetails';
|
||||
static const String filterScreen = 'filterScreen';
|
||||
static const String withdrawalScreen = 'withdrawalScreen';
|
||||
static const String withdrawalPreview = 'withdrawalPreview';
|
||||
static const String withdrawalConfirmation = 'withdrawalConfirmation';
|
||||
|
||||
@@ -8,6 +8,7 @@ import 'package:tanami_app/features/MainScreens/Invest/presentation/pages/paymen
|
||||
import 'package:tanami_app/features/MainScreens/Portfolio/presentation/pages/portfolio_details_screen.dart';
|
||||
import 'package:tanami_app/features/MainScreens/Wallet/presentation/pages/deposit/depositScreen.dart';
|
||||
import 'package:tanami_app/features/MainScreens/Wallet/presentation/pages/deposit/preview.dart';
|
||||
import 'package:tanami_app/features/MainScreens/Wallet/presentation/pages/filterScreen.dart';
|
||||
import 'package:tanami_app/features/MainScreens/Wallet/presentation/pages/walletDetails.dart';
|
||||
import 'package:tanami_app/features/MainScreens/Wallet/presentation/pages/withdrawal/confirmation.dart';
|
||||
import 'package:tanami_app/features/MainScreens/Wallet/presentation/pages/withdrawal/preview.dart';
|
||||
@@ -169,6 +170,13 @@ final goRouter = GoRouter(
|
||||
type: state.pathParameters["type"]!,
|
||||
);
|
||||
}),
|
||||
GoRoute(
|
||||
name: RouteName.filterScreen,
|
||||
path: RouteName.filterScreen,
|
||||
builder: (context, state) {
|
||||
return const FilterScreen();
|
||||
},
|
||||
),
|
||||
GoRoute(
|
||||
name: RouteName.withdrawalScreen,
|
||||
path: RouteName.withdrawalScreen,
|
||||
|
||||
@@ -131,7 +131,13 @@ class AppText {
|
||||
static const String walletTitle = "Wallet balance";
|
||||
static const String walletText = "Wallet";
|
||||
static const String day = "Today";
|
||||
static const String filterTitle = "Filters";
|
||||
static const String onHold = "On hold";
|
||||
static const String deposit = "Deposit";
|
||||
static const String withdrawal = "Withdrawal";
|
||||
static const String yield = "Yield";
|
||||
static const String refund = "REfund";
|
||||
static const String investment = "Investment";
|
||||
static const String walletDetailsTitle = "Details";
|
||||
static const String withdrawalScreenTitle = 'Enter bank details';
|
||||
static const String depositScreenTitle = 'Deposit notification';
|
||||
@@ -158,16 +164,25 @@ class AppText {
|
||||
static const String withdrawAmt = 'Total Withdrawal amount:';
|
||||
static const String depositAmt = 'Total Deposit amount:';
|
||||
static const String info2 = 'Payment can include transfer fee from your bank';
|
||||
static const String info3 = 'To accomplish payment please use payment details and Reference ID in tour Bank';
|
||||
static const String info3 =
|
||||
'To accomplish payment please use payment details and Reference ID in tour Bank';
|
||||
static const String next = 'Next';
|
||||
static const String depositNoti = 'Create deposit notification';
|
||||
static const String submit = 'Submit request';
|
||||
static const String Submit = 'Submit';
|
||||
static const String submitDeposit = 'Submit deposit';
|
||||
static const String cont = 'Continue';
|
||||
static const String later = 'Later';
|
||||
static const String back = 'Back to change';
|
||||
static const String clear = 'Clear All';
|
||||
static const String bankTransfer = 'Bank Transfer';
|
||||
static const String amtTrans = 'Amount of transaction';
|
||||
static const String date1 = 'Newest first';
|
||||
static const String date2 = 'Oldest first';
|
||||
static const String all = 'All';
|
||||
static const String byDate = 'By date';
|
||||
static const String byAction = 'By type of action';
|
||||
static const String byStatus = 'By status';
|
||||
|
||||
//Settings
|
||||
static const String settingsText = "Settings";
|
||||
|
||||
Reference in New Issue
Block a user