전체 글 248

RN 공부

https://github.com/ZeroCho/food-delivery-app/blob/master/README.md ^태그 View : div랑 비슷 Text : span이랑 비슷 하지만 안녕 안됨 문자열은 Text안에 있어야함 SafeAreaView : 노치같은거 때문에 위쪽 이거로주고 죽은공간으로 만들어서 그 아래부터 화면처리 StatusBar : 배터리잔량같은 상태창 아래부터 화면처리하기 위해서 react-native-status-bar-height 라이브러리로 높이 구함 ScrollView : 스크롤 만듦 근데 안에 많으면 성능문제있어서 FlatList씀 ^StyleSheet styleComponent보다 StyleSheet를 권장 const styles = StyleSheet.create({..

RN 2023.05.21

stirling formula(팩토리얼)

https://en.wikipedia.org/wiki/Stirling%27s_approximation Stirling's approximation - Wikipedia From Wikipedia, the free encyclopedia Approximation for factorials Comparison of Stirling's approximation with the factorial In mathematics, Stirling's approximation (or Stirling's formula) is an approximation for factorials. It is a good approximation, le en.wikipedia.org 팩토리얼은 stirling formula에 근사함 수가..

react-hook-form

사용하기 쉬운 유효성 검사를 통해 성능이 뛰어나고 유연하며 확장 가능한 form입니다. npm i react-hook-form 아래 처럼 쓰면 저런 객체가 만들어짐 const {register} = useForm() console.log(register('toDo')) watch는 값을 추적함 (state를 만들고 onCahge함수를 만들고 input에 props를 주는것과 같음) const { register, watch } = useForm() console.log(watch) 예를 들어 여러개의 from이 있을때 원래는 하나하나 state만들고 그랬어야하는데 function ToDoList() { const { register, watch } = useForm() console.log(watch()..