[React Native] Image, Modal
1. Image 이미지는 로컬에서 가져오는 방법(1)과 원격에서 이미지를 가져오는 방법(2)으로 나뉜다. assets 폴더와 그 하위에 images 폴더 생성 무료 이미지를 다운로드한 뒤 images 폴더에 삽입 (1) import React, { Component } from 'react'; import { View, Text, StyleSheet, ScrollView, Button, TextInput, Image } from 'react-native'; ... import Snow from './assets/images/snow.jpg' class App extends Component { ... render() { return ( ) } } const styles = StyleSheet.create..
2020.12.25