더북(TheBook)

그리고 추가로 한 가지 더 작업해줘야 하는데요. iOS에서 텍스트를 입력할 때 Enter를 많이 입력하면 텍스트가 화면 밖에 보이는 현상이 발생합니다. 이를 방지하기 위해 다음과 같이 KeyboardAvoidingView를 사용해주세요.

screens/UploadScreen.js

(...)
import {
  (...)
  KeyboardAvoidingView,
} from 'react-native';
(...)

function UploadScreen() {
  (...)
  return (
    <KeyboardAvoidingView
      behavior={Platform.select({ios: 'height'})}
      style={styles.block}
      keyboardVerticalOffset={Platform.select({
        ios: 180,
      })}>
      (...)
    </KeyboardAvoidingView>
  );
}

(...)
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.