SignInScreen에서 BorderedInput을 사용할 때 placeholder Props를 설정해보세요.
components/SignInScreen.js
(...) function () { return ( <SafeAreaView style={styles.fullscreen}> <Text style={styles.text}>PublicGallery</Text> <View style={styles.form}> <BorderedInput hasMarginBottom placeholder="이메일" /> <BorderedInput placeholder="비밀번호" /> <View style={styles.buttons}> <CustomButton title="로그인" hasMarginBottom /> <CustomButton title="회원가입" /> </View> </View> </SafeAreaView> ); } (...)
▲ 그림 8-12 placeholder 지정
이와 같이 placeholder가 잘 지정됐나요?