[앱화면만들기] <Button> <Image>
1. import { StatusBar } from "expo-status-bar"; import React from "react"; import { ScrollView, StyleSheet, Text, View, Button, Alert, } from "react-native"; export default function App() { return ( 아래 버튼을 눌러주세요. Alert.alert("팝업!!!")} /> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#fff", }, textContainer: { height: 100, margin: 10, paddingTop: 50, }, textStyle..
2021. 8. 18.