π§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} from 'LinkerStudio/modules/authentication/common/constants';<Stack.Group>
{AUTH_VALIDATION_SCREENS.map(screen => {
return (
<Stack.Screen
key={screen.name}
name={screen.name}
component={screen.component}
/>
);
})}
</Stack.Group>import {AuthConfirmStackParams} from 'LinkerStudio/modules/authentication/common/navigation/types';Last updated