Commit e79dedad by G

paymentAmount screen may require a payment type to display the correct logo on the page

parent 21151e97
import type { PaymentCode } from "@/utils/requests/Types";
import type { NativeStackScreenProps } from "@react-navigation/native-stack"; import type { NativeStackScreenProps } from "@react-navigation/native-stack";
export type PaymentStackParamList = { export type PaymentStackParamList = {
homePageWithPaymentOptions: undefined; homePageWithPaymentOptions: undefined;
numberAndOtpForPaymentScreen: undefined; numberAndOtpForPaymentScreen: undefined;
paymentAmountInputScreen: undefined; paymentAmountInputScreen: {
paymentType: PaymentCode;
};
homeUserNotLoggedIn: undefined; homeUserNotLoggedIn: undefined;
userLoginScreen: undefined; userLoginScreen: undefined;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment