blob: fb08e945e73d54eb9a8886d36ea12e43f60fc52c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import React from 'react';
import LinearGradient from 'react-native-linear-gradient';
import {
StyleSheet,
TouchableWithoutFeedback,
Keyboard,
ViewProps,
SafeAreaView,
} from 'react-native';
import {CenteredView} from '../common';
import {BackgroundGradientType} from '../../types';
import {BACKGROUND_GRADIENT_MAP} from '../../constants';
interface BackgroundProps extends ViewProps {
centered?: boolean;
gradientType: BackgroundGradientType;
}
const Background: React.FC<BackgroundProps> = (props) => {
const {centered, gradientType, children} = props;
return (
<LinearGradient
colors={BACKGROUND_GRADIENT_MAP[gradientType]}
useAngle={true}
angle={154.72}
angleCenter={{x: 0.5, y: 0.5}}
style={styles.container}>
<TouchableWithoutFeedback accessible={false} onPress={Keyboard.dismiss}>
{centered ? (
<CenteredView {...props}>{children}</CenteredView>
) : (
<SafeAreaView {...props}>{children}</SafeAreaView>
)}
</TouchableWithoutFeedback>
</LinearGradient>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
export default Background;
|