linearGradient
-
[weather_app_3] weather view프로젝트/[react]weather_app 2018. 4. 19. 22:42
날씨를 표시하는 뷰를 만들자!weather.js 파일 생성import React, { Component } from "react";import { StyleSheet, Text, View } from "react-native";import { LinearGradient } from "expo"; //view인데 배경색이 gradient인것 export default class Weather extends Component { render() { return ( ); }} const styles = StyleSheet.create({ container: { flex: 1 }}); LinearGradient 스펠링 잘못써서 계속 오류났었다..ㅠㅠ App.js에 Weather컴포넌트를 import해준다.imp..