-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
37 lines (34 loc) · 943 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
37
import React from "react";
import { View, ActivityIndicator, StyleSheet } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { Tabs } from "./components/Tabs";
import useGetWeather from "./hooks/useGetWeather";
// api.openweathermap.org/data/2.5/forecast?lat={lat}&lon={lon}&appid={API key}
export default function App() {
const [loading, error, weather] = useGetWeather();
if (weather && weather.list) {
return (
<NavigationContainer>
<Tabs weather={weather} />
</NavigationContainer>
);
}
if (loading) {
return (
<View style={styles.container}>
<ActivityIndicator size={"large"} color={"blue"} />
</View>
);
}
// return (
// <NavigationContainer>
// <Tabs weather={weather} />
// </NavigationContainer>
// );
}
const styles = StyleSheet.create({
container: {
justifyContent: "center",
flex: 1,
},
});