[React] 간단한 날씨 웹앱 만들어보기 - Loading.js 와 Location
로딩 화면을 만드는 것부터 시작한다. 아주 간단...! 이게 Loading.js import React from "react"; import { StyleSheet, Text, View } from "react-native"; export default function Loading() { return ( Getting Weather ... ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "flex-end", paddingHorizontal: 20, paddingVertical: 100, backgroundColor: "#B2CCFF", }, text: { color: "#2C2C2C", fontSize: 20, ..
2021. 4. 12.