diff options
Diffstat (limited to 'src/screens/onboarding/RegistrationTwo.tsx')
-rw-r--r-- | src/screens/onboarding/RegistrationTwo.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/screens/onboarding/RegistrationTwo.tsx b/src/screens/onboarding/RegistrationTwo.tsx index edefebaf..2f67d8c8 100644 --- a/src/screens/onboarding/RegistrationTwo.tsx +++ b/src/screens/onboarding/RegistrationTwo.tsx @@ -22,6 +22,7 @@ import { } from '../../components'; import {nameRegex, emailRegex} from '../../constants'; +import {BackgroundGradientType} from '../../types'; type RegistrationScreenTwoRouteProp = RouteProp< OnboardingStackParams, @@ -170,7 +171,9 @@ const RegistrationTwo: React.FC<RegistrationTwoProps> = ({ ); return ( - <Background style={styles.container}> + <Background + style={styles.container} + gradientType={BackgroundGradientType.Light}> <StatusBar barStyle="light-content" /> <RegistrationWizard style={styles.wizard} step="four" /> <KeyboardAvoidingView |