forked from naoufal/react-native-safari-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ios.js
112 lines (103 loc) · 2.48 KB
/
index.ios.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
'use strict';
import React, { Component } from 'react'
import {
AlertIOS,
AppRegistry,
processColor,
StatusBar,
StyleSheet,
Text,
TouchableHighlight,
View
} from 'react-native';
import SafariView from 'react-native-safari-view';
class SafariViewExample extends Component {
componentDidMount() {
this.showSubscription= () => {
console.log("SafariView onShow")
StatusBar.setBarStyle("light-content");
};
this.dismissSubscription = () => {
console.log("SafariView onDismiss");
StatusBar.setBarStyle("default");
};
SafariView.addEventListener("onShow", this.showSubscription);
SafariView.addEventListener("onDismiss", this.dismissSubscription);
}
componentWillUnmount() {
SafariView.removeEventListener("onShow", this.showSubscription);
SafariView.removeEventListener("onDismiss", this.dismissSubscription);
}
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
react-native-safari-view
</Text>
<Text style={styles.instructions}>
github.com/naoufal/react-native-safari-view
</Text>
<TouchableHighlight
style={styles.btn}
onPress={this._clickHandler}
underlayColor="#0380BE"
activeOpacity={1}
>
<Text style={{
color: '#fff',
fontWeight: '600'
}}>
Show Safari View
</Text>
</TouchableHighlight>
</View>
);
}
_clickHandler() {
SafariView.show({
url: 'http://twitter.com/naoufal',
readerMode: true,
tintColor: "rgb(0, 0, 0)",
fromBottom: true
});
}
_isAvailable() {
SafariView.isAvailable()
.then(success => {
AlertIOS.alert('SFSafariView available.');
})
.catch(error => {
AlertIOS.alert('SFSafariView not available.');
});
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF'
},
welcome: {
margin: 10,
fontSize: 20,
fontWeight: '600',
textAlign: 'center'
},
instructions: {
marginBottom: 5,
color: '#333333',
fontSize: 13,
textAlign: 'center'
},
btn: {
borderRadius: 3,
marginTop: 200,
paddingTop: 15,
paddingBottom: 15,
paddingLeft: 15,
paddingRight: 15,
backgroundColor: '#0391D7'
}
});
AppRegistry.registerComponent('SafariViewExample', () => SafariViewExample);