React Native / TextInput 박스 안에 button 넣기
이런 모양처럼 TextInput 박스 안에 button을 넣고 싶었다. 구선생님이 알려주신 방법으로 문제 해결 수정 전 코드 중복확인 수정 후 코드 중복확인 const styles = StyleSheet.create({ button:{ width:'90%' }, phoneBox:{ flexDirection:'row', marginTop:15, paddingHorizontal: 5, paddingVertical: 6, borderBottomWidth:1, borderBottomColor:'#ddd', width: '100%', }, authFont:{ color:"#808080", paddingHorizontal: 6, fontWeight:'bold', fontSize: 16, fontFamily: 'na..
React Native / 메모장 만들기 sample (useEffect, AsyncStorage )
간단하게 메모를 한 후에 저장 후, 해당 저장한 내용을 불러오는 메모장 만들기를 연습삼아 해보았다. (참고사이트) https://www.youtube.com/watch?v=1mkgX7Mr5fI App.js import { StatusBar } from 'expo-status-bar'; import React, {useEffect, useLayoutEffect, useState}from 'react'; import { StyleSheet, Text, View,SafeAreaView, Button, TextInput } from 'react-native'; import AsyncStorage from '@react-native-async-storage/async-storage'; export default ..