1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Fix details

This commit is contained in:
Zhiyuan Zheng
2021-05-11 21:38:48 +02:00
parent 7ffc0c7dc6
commit bfa821a36d
13 changed files with 234 additions and 186 deletions

View File

@ -11,7 +11,7 @@ import { Alert, StyleSheet, View } from 'react-native'
import FlashMessage from 'react-native-flash-message'
import { ScrollView } from 'react-native-gesture-handler'
const ScreenMeProfileNote: React.FC<StackScreenProps<
const TabMeProfileNote: React.FC<StackScreenProps<
Nav.TabMeProfileStackParamList,
'Tab-Me-Profile-Note'
> & { messageRef: RefObject<FlashMessage> }> = ({
@ -94,7 +94,7 @@ const ScreenMeProfileNote: React.FC<StackScreenProps<
}, [mode, i18n.language, dirty, status, newNote])
return (
<ScrollView style={styles.base} keyboardShouldPersistTaps='handled'>
<ScrollView style={styles.base} keyboardShouldPersistTaps='always'>
<View style={{ marginBottom: StyleConstants.Spacing.XL * 2 }}>
<Input
value={newNote}
@ -114,4 +114,4 @@ const styles = StyleSheet.create({
}
})
export default ScreenMeProfileNote
export default TabMeProfileNote