-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrivacyScreen.js
52 lines (40 loc) · 1.1 KB
/
PrivacyScreen.js
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
45
46
47
48
49
50
51
52
import {
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
StatusBar,
Alert,
TouchableOpacity,
TextInput,
Image,
ImageBackground,
TouchableHighlight,
Linking,
FlatList,
Dimensions,
} from 'react-native';
import React, {Component} from 'react';
import Button from 'react-native-button';
import { WebView } from 'react-native-webview';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import Header from 'react-native-custom-headers';
class PrivacyScreen extends React.Component {
render() {
return(
<SafeAreaProvider>
<Header navigation={this.props.navigation}
showHeaderImage={false}
headerColor ={'#161718'}
backImagePath={require('./arrowlogo2.png')}
headerName={'Privacy & Policy'}
headerTextStyle={{fontFamily:'Gilroy-Bold', color:'white',marginLeft:10}} />
<View style={{flex:1}}>
<WebView source={{ uri: 'http://pumpfit.in/privacy.html' }} />
</View>
</SafeAreaProvider>
);
}
}
export default PrivacyScreen;