-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
36 lines (32 loc) · 886 Bytes
/
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
import React from 'react';
import { ActivityIndicator, View, StyleSheet, Text } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import Tabs from './src/components/tabs';
import { useGetWeather } from './src/hooks/get-weather-data';
import ErrorItem from './src/components/error-item';
const App = () => {
const [loading, error, weather] = useGetWeather();
if (weather && weather.list && !loading) {
return (
<NavigationContainer>
<Tabs weather={weather} />
</NavigationContainer>
);
}
return (
<View style={styles.container}>
{error ? (
<ErrorItem errorMsg={error} />
) : (
<ActivityIndicator size={'large'} color={'blue'} />
)}
</View>
);
};
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
flex: 1,
},
});
export default App;