더 친절한 코틀린 앱프로그래밍 책에 있는 코드 입니다.This is code from the Friendlier Kotlin App Programming book 리니어레이아웃 예제입니다.This is a linear layout example. 이 코드는 뷰바인딩을 사용하지 […]
[Kotlin]버튼클릭,토스트메세지,텍스트뷰 예제/Button click, toast message, text view examples
더 친절한 코틀린 앱프로그래밍 책에 있는 코드 입니다.This is code from the Friendlier Kotlin App Programming book 버튼클릭,토스트 메시지,텍스트뷰 코드 예제 입니다.Button click, toast message, and text view […]
[ReactNative]Drawer Layout
아래는 Drawer Layout관련 코드 입니다.Below is the code related to Drawer Layout. 이미 메뉴얼이 있지만 직접 메뉴얼보고 따라해보면 실행되지 않는 경우가 있습니다.There is already a manual, but if […]
[ReactNative]아이콘 사용하기 / Using icons
이전 포스트에서 아이콘 사용하는 부분을 다뤘지만 약간 추가 설명이 필요한것 같습니다.I covered the use of icons in the previous post, but I think a little more explanation is […]
[ReactNative]Tab navigator 코드설명 / Tab navigator code explanation
이 포스트는 Tab navigator사용하기에 대한 코드 설명입니다.This post is a code explanation for using the Tab navigator. 한번 보시면 크게 이해하기 어려운 부분은 없다고 생각됩니다.If you take a […]
[ReactNative]Tab Navigator사용하기 / Using Tab Navigator
-탭 네비게이터를 사용하는 방법에 대한 설명입니다.Here’s an explanation of how to use the tab navigator. -탭 네비게이터는 앱에서 사용가능한 메뉴의 한 종류 입니다.Tab navigator is a type of […]
[ReactNative]웹뷰사용하기 코드설명 / Code explanation for using webview
코드가 길지 않아 많은 설명이 필요하진 않지만 중요한 것만 얘기하겠습니다.The code isn’t long so it doesn’t need much explanation, but I’ll just mention the important things. 웹뷰에서 접속 […]
[ReactNative]웹뷰사용하기 / Using webview
이번에는 리액트네이티브에서 간단하게 웹뷰를 구현해 봅니다.This time, we will simply implement a web view in React Native. 웹뷰는 모바일에서 웹페이지를 볼 수 있게 해주는 모듈 입니다.Webview is a […]
[ReactNative]리액트네이티브CLI시작/Getting started with React Native CLI
리액트 네이티브는 페이스북(메타)이 개발한 오픈 소스 모바일 애플리케이션 프레임워크입니다.React Native is an open source mobile application framework developed by Facebook(META). Expo는 리액트네이티브의 프레임워크 입니다.Expo is a React Native […]
[nodejs]비밀번호 암호화하기 / Encrypt password
회원 가입된 사용자의 비밀번호가 의도치 않게 노출될 수 있습니다Passwords of registered users may be exposed unintentionally.. 그래서 사용자의 개인 정보가 해킹되거나 악용되는 것을 방지하기 위해서 비밀번호를 암호화 시키는게 […]