일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- amazon ebs
- describe-instances
- linux 파일복사
- k8s
- kubectl
- 명령어
- nexus proxy
- ELB
- EC2
- aws cli
- cli ec2
- Ansible
- jenkins parameter
- 쿠버네티스교과서
- yaml예시
- pod
- aws cli ec2
- private repostiroy
- 서버간 파일전송
- 쿠버네티스
- amazon ebs활용
- kubectl명령어
- docker myql
- amazon ebs종류
- Configmap
- sql 공유
- SecurityContextHolder
- statefulset
- React Native
- docker
- Today
- Total
목록2022/12/09 (2)
게으름을 위한 부지런한 게으름뱅리' 블로그
화면을 그릴때 View영역이 StatusBar 영역과 겹치는 현상이 발생. 안드로이드에서만 SafeAreaView가 정상적으로 동작하지 않음. OS에 따라서 Padding을 주어 해결. export default function App() { return ( ); } react-native-safe-area-context react-native-safe-area-context를 설치하면 OS구분 없이 정상 동작하는걸 확인가능 설치하기 yarn add react-native-safe-area-context 사용하기 import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context'; export default function App..
custom Hook은 "use"라는 prefix가 붙어야한다. import React, {useState} from "react"; import { TextInput, View, Button, ProgressViewIOSComponent } from "react-native"; const InputBox = (props) => { return ( ) } const useInput = (initialValue) => { const [value, setValue] = useState(initialValue); const resetValue = () => setValue(initialValue); return { value, setValue, resetValue,} } const CustomHook = ()..