ReactNative2 WIL9 주차 Facts -ReactNative -styled-components -style sheet Feelings -Styled-component와 style sheet의 장단점을 느꼈다. Finding -Styled-component -style sheet -Alert.arlert Future -ReactNativer강의수강 -React 강의 복습 -Redux 사용하여 TodoList 2023. 1. 2. react Native 투두리스트 기본적인 UI를 짜고 기능을 추가해보았다 . 첫 번째 추가 기능 구현 const [todos, setTodos] = useState([]); const [text, setText] = useState(); const newTodo = { id: Date.now(), isEdit: false, text, isDone: false, category, }; const addTodo = () => { setTodos((prev) => { return [...prev, newTodo]; }); setText(""); }; 추가될 newTodo라는 새로운 객체를 만든다 만든 후 addTodo 변수를 만들어 setTodo를 이용하요 기존에 있던 todos 에 넣는다 setText 는 입력후 - 인풋창을 비.. 2023. 1. 2. 이전 1 다음