Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- materialicons
- interface
- Spring
- reactnative
- 스크롤이벤트
- async
- array
- 타입스크립트
- 슬라이딩윈도우
- Next.js
- app.post
- TS
- supabase 페이지네이션
- Filter
- 페이지네이션
- meatadata
- 리액트네이티브아이콘
- 안드로이드빌드에러
- 상속
- extends
- mainapplication.kt
- app:compiledebugkotlin
- javascript
- 배열중복요소제거
- set
- 이진탐색
- 글또10기
- generic
- react
- map
Archives
- Today
- Total
rhanziy
React Native - 인풋이 키보드에 가려져요? KeyboardAvoidingView, KeyboardAwareFlatList 본문
React Native
React Native - 인풋이 키보드에 가려져요? KeyboardAvoidingView, KeyboardAwareFlatList
rhanziy 2023. 11. 23. 22:41사용자 인풋이나 form작성 시 키보드에 가려져서 입력폼이 안보일 때가 있다.
그럼 KeyboardAvoidingView를 쓰자!
<KeyboardAvoidingView
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
>
<TextInput
...
autoFocus
/>
</KeyboardAvoidingView>
안드로이드와 ios 플랫폼에 따라 조건처리해줘야댄다~ ios는 padding으로!
확인해보면 autoFocus 속성으로 인해 자동으로 포커스가되며 키보드에 더이상 가리지 않게 될 것.
그 외에도 View 컴포넌트처럼 style을 적용하거나 다른 방식으로 다룰 수 있다.
그래도 가린다면 높이 값을 더 설정하자! 👉 keyboardVerticalOffset
<KeyboardAvoidingView
behavior={Platform.OS === 'ios' ? 'padding' : height}
keyboardVerticalOffset={statusBarHeight+44}
>
{...}
</KeyboardAvoidingView>
사실 이쪽은 아직 잘 이해가 안됨.
KeyboardAvoidingView + 적절한 padding 값 조절로 해결하는 방법인데,
기기별로 statusBar 높이가 다르니 높이를 구해주는 라이브러리를 사용하든가... 해서 statusBarHeight + 원하는 높이로 구현하자.
44는 임의의 높이임!ㅇㅅㅇ
'React Native' 카테고리의 다른 글
React Native - react hook form의 onsubmit에 파라미터로 입력값 넘기기!!! (1) | 2023.12.01 |
---|---|
React Native - 아래로 끌어내려서 새로고침 RefreshControl (1) | 2023.11.23 |
React Native - useInfiniteQuery 파라미터 여러개 넘기기 (0) | 2023.11.23 |
React Native - 무한스크롤 useInfiniteQuery와 FlatList (typescript) (0) | 2023.11.20 |
React Native - 에러해결 invalid hook call error(feat.카카오로그인) (1) | 2023.11.03 |
Comments