đ§Verify Email
This screen is used when the user is required to confirm the email address with which they registered.
How to use it?
Import AUTH_VALIDATION_SCREENS constant where you have the Stack.Navigator you want to display the email verification screens.
Add this code block to the Stack.Navigator you want to display the email verification screen.
Import AuthConfirmStackParams type where you have the stack params list type of the Stack.Navigator you want to display the email verification screen. It is usually the
types.ts
file.
Add the AuthConfirmStackParams type to your stack params list type, so your stack navigator can recognize the email verification screen.
Take the following as an example:
Last updated