-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
70 lines (66 loc) · 1.86 KB
/
App.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
import * as React from "react";
import { ActivityIndicator, StyleSheet, View } from "react-native";
import { WebView } from "react-native-webview";
import Constants from "expo-constants";
import { StatusBar } from "expo-status-bar";
import * as Linking from "expo-linking";
const BASE_URL = "https://myplaceonline.com/";
const DEBUG = false;
const styles = StyleSheet.create({
wrapper: {
flex: 1,
paddingTop: Constants.statusBarHeight,
backgroundColor: "#ffffff",
},
webview: {
flex: 1,
},
center: {
position: "absolute",
top: 0,
left: 0,
right: 0,
bottom: 0,
justifyContent: "center",
alignItems: "center",
padding: 15,
},
});
function CustomActivityIndicator() {
return (
<View style={styles.center}>
<ActivityIndicator size="large" color="#000000" />
</View>
);
}
export default function App() {
return (
<View style={styles.wrapper}>
{/*<StatusBar style="dark" backgroundColor="#ffffff" />*/}
<WebView
style={styles.webview}
source={{ uri: BASE_URL }}
mediaPlaybackRequiresUserAction={false}
allowsFullscreenVideo={true}
allowsInlineMediaPlayback={true}
allowsBackForwardNavigationGestures={true}
cacheEnabled={true}
sharedCookiesEnable={true}
pullToRefreshEnabled={true}
onError={(event) => {
console.warn("WebView error: ", event.nativeEvent);
}}
onShouldStartLoadWithRequest={(request) => {
if (DEBUG) console.info("onShouldStartLoadWithRequest " + request.url);
if (request.url.startsWith("http") && !request.url.startsWith(BASE_URL)) {
Linking.openURL(request.url);
return false;
}
return true;
}}
startInLoadingState={true}
renderLoading={() => <CustomActivityIndicator />}
/>
</View>
);
}