-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.js
56 lines (49 loc) · 1.21 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
import React from 'react';
import { StyleSheet, SafeAreaView, TouchableOpacity } from 'react-native';
import MyStatusBar from './src/components/MyStatusBar';
import RootNavigation from './src/navigation/RootNavigation';
import color from './src/theme/color';
import './ReactotronConfig';
const showApiCalls = () => {
const baseUrl = 'http://www.mocky.io/';
global._fetch = fetch;
global.fetch = async (uri, options, ...args) => {
const response = await global._fetch(uri, options, ...args);
if (uri.includes(baseUrl)) {
console.log(
'🔵 API Call: ',
uri,
{ request: { uri }, response },
);
}
return response;
};
};
class App extends React.Component {
constructor(props) {
super(props);
if (__DEV__) {
console.disableYellowBox = true;
showApiCalls();
}
}
render() {
return (
<SafeAreaView style={styles.container}>
<MyStatusBar />
<RootNavigation />
</SafeAreaView>
);
}
}
export default App;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: color.greyDarker,
},
});
TouchableOpacity.defaultProps = {
...TouchableOpacity.defaultProps,
activeOpacity: 0.8,
};