티스토리 뷰
얘도 적어두면 언젠간 쓰겠지...?
function WriteEditor({title, body, onChangeTitle, onChangeBody}) {
const bodyRef = useRef();
return (
<View style={styles.block}>
<TextInput
placeholder="제목을 입력하세요"
style={styles.titleInput}
returnKeyType="next"
onChangeText={onChangeTitle}
value={title}
onSubmitEditing={() => {
bodyRef.current.focus();
}}
/>
<TextInput
placeholder="당신의 오늘을 기록해보세요"
style={styles.bodyInput}
multiline
textAlignVertical="top"
onChangeText={onChangeBody}
value={body}
ref={bodyRef}
/>
</View>
);
}
- useRef().focus() = 포커스
- useRef().blur() = 포커스 해제
- useRef().clear() = 내용을 모두 비움
반응형
'Mobile > react-native' 카테고리의 다른 글
[react-native] date-fns (0) | 2024.01.26 |
---|---|
[react-native] uuid (0) | 2024.01.23 |
[react-native] FloatingButton Template (1) | 2024.01.23 |
[react-native] Context API (0) | 2024.01.22 |
[react-native] useFocusEffect (0) | 2024.01.16 |
Comments
최근에 올라온 글
최근에 달린 댓글
TAG
- javascript
- Promise
- 인천 구월동 맛집
- 정보보안기사 #실기 #정리
- 이탈리안 레스토랑
- react
- react-native
- redux-thunk
- 파니노구스토
- 맛집
- AsyncStorage
- redux
- await
- 인천 구월동 이탈리안 맛집
- Async
- Total
- Today
- Yesterday