๐ React Native๋ ํ์ด์ค๋ถ์ด ๊ฐ๋ฐํ ์คํ ์์ค ๋ชจ๋ฐ์ผ ์ ํ๋ฆฌ์ผ์ด์ ํ๋ ์์ํฌ.
๐ ๋ฌด์์ด React์ ๋ค๋ฅผ๊น??
1. View : html์์์ div์ ๊ฐ์ ์ญํ .
2. flex:1 -> ๋ถ๋ชจ ์ปจํ
์ด๋, ๋ชจ๋ ๊ณต๊ฐ ์ฌ์ฉ ๊ฐ๋ฅ.
3. flex:1 flex:2 -> ์ ์ฒด ๊ณต๊ฐ์ 1:2๋ก ์ฐจ์ง.
4. width, height๋ณด๋ค flex๋ฅผ ์ฌ์ฉํ๋ ๊ฒ์ด ๐
๐ด ๊ฐ๋จํ ์ฝ๋ ์์ ๋ฅผ ๋ณด๋ฉฐ ์ดํด โ
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<View style = {styles.yellowView}/>
<View style = {styles.blueView}/>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1
},
yellowView:{
flex:1,
backgroundColor:"yellow"
},
blueView: {
flex:1,
backgroundColor:"blue"
}
});
๐ ์ฝ๋ ์ค๋ช
1. container View ์์ yello, blue View ๋ ์์ ํฌํจ.
2. yelloView, blueView์ flex๋ 1, 1 ์ด๋ ๋์ ๊ณต๊ฐ์ด 1:1์ ์ฐจ์งํจ์ ์๋ฏธ.
3. View๋ html์์์ div๋ฅผ ์๋ฏธ.
๐ด Loading์ฐฝ์ ๋ง๋ค์ด ๋ด ๋๋ทโ
import React from "react";
import {StyleSheet, Text, View} from "react-native";
export default function Loading(){
return <View style={styles.container}>
<Text style ={styles.text}>Getting the fucking weather</Text>
</View>
}
const styles = StyleSheet.create({
container:{
flex:1,
justifyContent:"flex-end", //content์ ๋ด์ฉ์ ๋ฐ๋จ์ผ๋ก ๋ด๋ฆผ.
paddingHorizontal:30,
paddingVertical : 150,
backgroundColor:"#FDF6AA"
},
text:{
color:"#2c2c2c",
fontSize: 20
}
});
๐ ์ฝ๋ ์ค๋ช
justifyContent : "flew-end"
: content๋ฅผ ๋ฐ์ผ๋ก ๋ด๋ฆผ.paddingHorizontal:30, paddingVertical : 150
: ์ธ๋ก์ ๊ฐ๋ก์ padding ๊ณต๊ฐ์ ์์น๋งํผ ์ค์ .fontSize : 20
or fonrSize:"20px"
์ด๋ฐ ๋ฐฉ์์ผ๋ก ์์ฑํด์ค์ผ ํจ.๐ด expo API์์ location ๋ฐ์์ค๊ธฐ.
expo install expo-location
๋ก location API ์ค์น.export default class extends React.Component {
getLocation = async() =>{
const location = await Location.getCurrentPositionAsync();
console.log(location);
}
componentDidMount(){
this.getLocation();
}
render(){
return <Loading />;
}
}
๐ ์ฝ๋ ์ค๋ช
๐ด Location์ ๋ฐ๊ธฐ ์ํด ์ฌ์ฉ์ ์์น ์ ๋ณด ํ์ธ.
export default class extends React.Component {
state = {
isLoading: true
}
getLocation = async() =>{
try{
await Location.requestPermissionsAsync();
const {coords : {latitude, longtinude}} = await Location.getCurrentPositionAsync();
//send to API and get weather!
this.setState({isLoading:false})
}catch(error){
Alert.alert("Can't find you.", "so sad");
}
}
componentDidMount(){
this.getLocation();
}
render(){
const {isLoading } = this.state;
return isLoading? <Loading /> : null;
}
}
๐ ์ฝ๋ ์ค๋ช
const {coords:{latitude,longtitude}} = await Location.getCurrentPositionAsync()
์๋์ ๊ฒฝ๋ ๊ฐ์ ธ์ค๊ธฐ.๐ด ์๋, ๊ฒฝ๋๋ฅผ ๊ฐ์ง๊ณ ๋ ์จ ๊ฐ์ ธ์ค๊ธฐ.
import axios from "axios";
import * as Location from "expo-location";
const API_KEY = "d6ee5391a7da7b3a908bb7093fd3fa0d";
export default class extends React.Component {
...
getWeather = async(latitude, longitude) =>{
const {data} = await axios.get(
`http://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&appid=${API_KEY}`
);
console.log(data);
};
๐ ์ฝ๋ ์ค๋ช
<์ถ์ฒ : ๋ ธ๋ง๋ ์ฝ๋>