diff options
Diffstat (limited to 'src/components/common/ComingSoon.tsx')
-rw-r--r-- | src/components/common/ComingSoon.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/common/ComingSoon.tsx b/src/components/common/ComingSoon.tsx index 16b65b58..d7654a20 100644 --- a/src/components/common/ComingSoon.tsx +++ b/src/components/common/ComingSoon.tsx @@ -1,11 +1,14 @@ import * as React from 'react'; import {StyleSheet, View, Text, Image} from 'react-native'; +import {BackgroundGradientType} from '../../types'; import {SCREEN_WIDTH} from '../../utils'; import {Background} from '../onboarding'; const ComingSoon: React.FC = () => { return ( - <Background style={styles.container}> + <Background + style={styles.container} + gradientType={BackgroundGradientType.Light}> <View style={styles.textContainer}> <Text style={styles.header}>Coming Soon</Text> <Text style={styles.subtext}> |