본문 바로가기

분류 전체보기281

Kotlin, Swift, Flutter, React Native 디바이스 인터페이스 Native에서 지원하는 디바이스 인터페이스와 flutter, RN에서 사용되는 함수들이 궁금해서 Bard에게 물어보았다 ㅎㅎ; 그래서 정확하지는 않을수 있겠지만 하나씩 붙여가면서 확인해봐야 할것 같다. - Native에서 지원하는 인터페이스중 지원하지 않는게 있을것 같아서 확인할겸 정리해 보았다. 다 되는것같아 보이긴한대.. 함수 Kotlin Swift Flutter React Native 지문인식 FingerprintManager.authenticate(null, null, 0, null, null) UIDevice.isPasscodeSet BiometricPrompt.authenticate(null) Biometric.authenticate() 페이스아이디 FaceManager.authenticat.. 2023. 10. 15.
[RN] /usr/local/lib/node_modules/react-native-cli/index.js:302 cli.init(root, projectName) error 오랜만에 다시 rn을 실행해보니 구동이 안된다;;;;; 머야이거... 다시 처음부터 세팅하고 설치를 하니.. react-native init react_native error /usr/local/lib/node_modules/react-native-cli/index.js:302 cli.init(root, projectName) error 새로운 버전에서 에러가 있다고 한다... 그래서 낮은 버전(0.68.2)을 지정해서 설치해야 가능 npx react-native init react_native --version 0.68.2 아직 react-native가 1버전이 안된게 실감이 난다.. 얼른 1버전이 나와서 안정적인 서비스가 되길 바란다.. 2023. 10. 15.
[RN] react native 세팅 flutter와 react native의 성능 비교를 위해 react native 세팅을 합니다. --- Homebrew - package 관리 툴 https://docs.brew.sh/Manpage brew(1) – The Missing Package Manager for macOS (or Linux) Documentation for the missing package manager for macOS (or Linux). docs.brew.sh 요기 들어가서 설치 방법 대로 설치 먼저 합니다. rbenv - https://github.com/rbenv/rbenv GitHub - rbenv/rbenv: Manage your app's Ruby environment Manage your app's Ruby.. 2023. 9. 16.
[flutter] ( flutter || React Native ) + Kotlin/Swift => app 고민거리가 생겼다.. 제목에 적은것 처럼 멀티 플랫폼 코드에 native코드 합쳐서 앱만들기. 현재 회사에 app팀이 있고, web팀이 있기에 한쪽에서 모든걸 다 가져갈수가 없다.. 한쪽에서 다 가져가게 되면 어느 한팀은 사라져야 한다.. 팀으로 구성되어있는 회사에서 갑자기 팀을 없에는건 정말 위기 상황으로 인한 인원 감축이 아니라면 불가능 할것같다.. 그래서 가능한지를 찾아보았다. -- 결론적으로는 가능은 하다.. 하지만 어렵고 복잡하다고 한다. 대강 찾아보니 flutter 에서는 위젯으로 감싸서 사용을 한다고 하는대 조금더 찾아보긴해야겠다. 참고 링크. https://docs.flutter.dev/platform-integration/android/platform-views#putting-it-tog.. 2023. 9. 12.