3.2.1 KeyboardAvoidingView로 키보드가 화면을 가리지 않게 하기
텍스트를 입력할 때 키보드가 화면을 가리지 않게 하려면 KeyboardAvoidingView를 사용해야 합니다. App 컴포넌트의 SafeAreaView 내부에서 다음과 같이 KeyboardAvoidingView를 사용하세요.
App.js
import React from 'react'; import {StyleSheet, KeyboardAvoidingView, Platform} from 'react-native'; import DateHead from './components/DateHead'; import {SafeAreaProvider, SafeAreaView} from 'react-native-safe-area-context'; import AddTodo from './components/AddTodo'; import Empty from './components/Empty'; function () { const today new Date(); return ( <SafeAreaProvider> <SafeAreaView edges={['bottom']} style={styles.block}> <KeyboardAvoidingView behavior={Platform.OS === 'ios' ? 'padding' : undefined} style={styles.avoid}> <DateHead date={today} /> <Empty /> <AddTodo /> </KeyboardAvoidingView> </SafeAreaView> </SafeAreaProvider> ); } const styles StyleSheet. ({ block: { flex: 1, backgroundColor: 'white', }, avoid: { flex: 1, }, }); export default App;