React_Native (1)

ํ•œ์ƒํ˜„ยท2021๋…„ 2์›” 4์ผ
0

React_Native

๋ชฉ๋ก ๋ณด๊ธฐ
1/2
post-thumbnail

๐Ÿ˜ React Native๋Š” ํŽ˜์ด์Šค๋ถ์ด ๊ฐœ๋ฐœํ•œ ์˜คํ”ˆ ์†Œ์Šค ๋ชจ๋ฐ”์ผ ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜ ํ”„๋ ˆ์ž„์›Œํฌ.

๐Ÿ“Œ ๋ฌด์—‡์ด React์™€ ๋‹ค๋ฅผ๊นŒ??
1. View : html์—์„œ์˜ div์™€ ๊ฐ™์€ ์—ญํ• .
2. flex:1 -> ๋ถ€๋ชจ ์ปจํ…Œ์ด๋„ˆ, ๋ชจ๋“  ๊ณต๊ฐ„ ์‚ฌ์šฉ ๊ฐ€๋Šฅ.
3. flex:1 flex:2 -> ์ „์ฒด ๊ณต๊ฐ„์„ 1:2๋กœ ์ฐจ์ง€.
4. width, height๋ณด๋‹ค flex๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒƒ์ด ๐Ÿ‘

๐Ÿ”ด ๊ฐ„๋‹จํ•œ ์ฝ”๋“œ ์˜ˆ์ œ๋ฅผ ๋ณด๋ฉฐ ์ดํ•ด โ—

๐Ÿ’ป App.js ์ฝ”๋“œ

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์ฐฝ์„ ๋งŒ๋“ค์–ด ๋ด…๋‹ˆ๋‹ทโ—

๐Ÿ’ป Loading.js ์ฝ”๋“œ

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
    }
});

๐Ÿ˜€ ์ฝ”๋“œ ์„ค๋ช…

  1. Loading function
    • View์˜ ๋ถ€๋ชจ ์ปจํ…Œ์ด๋„ˆ์— Text ์ž์‹ ๋ฐฐ์น˜.
  2. styles
    • justifyContent : "flew-end" : content๋ฅผ ๋ฐ‘์œผ๋กœ ๋‚ด๋ฆผ.
    • paddingHorizontal:30, paddingVertical : 150 : ์„ธ๋กœ์™€ ๊ฐ€๋กœ์˜ padding ๊ณต๊ฐ„์„ ์ˆ˜์น˜๋งŒํผ ์„ค์ •.
    • fontSize : 20 or fonrSize:"20px" ์ด๋Ÿฐ ๋ฐฉ์‹์œผ๋กœ ์ž‘์„ฑํ•ด์ค˜์•ผ ํ•จ.

๐Ÿ”ด expo API์—์„œ location ๋ฐ›์•„์˜ค๊ธฐ.

  1. terminal์—์„œ expo install expo-location ๋กœ location API ์„ค์น˜.
  2. functionํ˜• -> classํ˜•

๐Ÿ’ป App.js ์ฝ”๋“œ

export default class extends React.Component {
  getLocation = async() =>{
    const location = await Location.getCurrentPositionAsync();
    console.log(location);
  }
  componentDidMount(){
    this.getLocation();
  }
  render(){
    return <Loading />;
  }
}

๐Ÿ˜€ ์ฝ”๋“œ ์„ค๋ช…

  1. Location.getCurrentPositionAsync๋Š” await ํ•จ์ˆ˜์ด๊ธฐ์— async() ํ•จ์ˆ˜๋ฅผ ํ†ตํ•ด ๋งŒ๋“ฌ.
  2. componentDidMount() ์•ˆ์— getLocation ํ•จ์ˆ˜ ๋„ฃ์–ด์คŒ.

๐Ÿ”ด Location์„ ๋ฐ›๊ธฐ ์œ„ํ•ด ์‚ฌ์šฉ์ž ์œ„์น˜ ์ •๋ณด ํ™•์ธ.

๐Ÿ’ป App.js ์ฝ”๋“œ

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;
  }
}

๐Ÿ˜€ ์ฝ”๋“œ ์„ค๋ช…

  1. getLocation ํ•จ์ˆ˜๋Š” ์œ„์น˜๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ํ•จ์ˆ˜.
  2. ๊ทธ๋Ÿฌ๋‚˜ ์œ„์น˜๋ฅผ ๊ฐ€์ ธ์˜ค๊ธฐ ์œ„ํ•ด์„œ๋Š” ์‚ฌ์šฉ์ž์˜ ์œ„์น˜์ •๋ณด๋™์˜๊ฐ€ ํ•„์š”.
  3. try catch๋ฌธ์˜ try๋ฌธ์— Location.requestPermissionAsync() ์‚ฌ์šฉํ•˜์—ฌ ์‚ฌ์šฉ์ž ๋™์˜ ๋ฐ›์•„์˜ด.
  4. ๋งŒ์•ฝ ๋™์˜ํ•˜์ง€ ์•Š์œผ๋ฉด catch๋ฌธ์—์„œ ์žกํ˜€ error Alert๋ฅผ ๋ฐœ์ƒ.
  5. const {coords:{latitude,longtitude}} = await Location.getCurrentPositionAsync() ์œ„๋„์™€ ๊ฒฝ๋„ ๊ฐ€์ ธ์˜ค๊ธฐ.
  6. isLoading์€ ๋ฐ์ดํ„ฐ๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ์‹œ๊ฐ„์ด ์žˆ๊ธฐ์— true์˜ ๊ธฐ๋ณธ๊ฐ’์—์„œ ๋ฐ์ดํ„ฐ๋ฅผ ๋ชจ๋‘ ๊ฐ€์ ธ์˜ค๋Š” ์ˆœ๊ฐ„ false๋กœ ๋„˜์–ด๊ฐ. ๋‘˜์˜ bool๊ฐ’์— ๋”ฐ๋ฅธ Loading์ฐฝ ์ถœ๋ ฅ์œ ๋ฌด.

๐Ÿ”ด ์œ„๋„, ๊ฒฝ๋„๋ฅผ ๊ฐ€์ง€๊ณ  ๋‚ ์”จ ๊ฐ€์ ธ์˜ค๊ธฐ.

๐Ÿ’ป App.js ์ฝ”๋“œ

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);
  };

๐Ÿ˜€ ์ฝ”๋“œ ์„ค๋ช…

  1. openweather.io์—์„œ API_KEY ๊ฐ€์ ธ์˜ด.
  2. getWeather ๋น„๋™๊ธฐ ํ•จ์ˆ˜์—์„œ axios๋ฅผ ํ†ตํ•ด API ๊ฐ€์ ธ์˜ด.
  3. `` ์•ˆ์— ๋„ฃ์–ด์ฃผ์–ด longtitude, latitude, api_key ๋„ฃ์–ด์คŒ.

<์ถœ์ฒ˜ : ๋…ธ๋งˆ๋“œ ์ฝ”๋”>

profile
์˜ ๊ณต๋ถ€ ๋…ธํŠธ.

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด