This commit is contained in:
Gabriel Brown 2025-03-11 17:00:25 -05:00
parent 0c2e5f3ac7
commit 7e4978f0e0
3 changed files with 9 additions and 4 deletions

View File

@ -147,6 +147,7 @@ const SettingsScreen = () => {
textContentType='name' textContentType='name'
maxLength={50} maxLength={50}
onSubmitEditing={updateProfile} onSubmitEditing={updateProfile}
returnKeyType='send'
/> />
</ThemedView> </ThemedView>
</SafeAreaView> </SafeAreaView>

View File

@ -128,11 +128,13 @@ const Auth = () => {
</ThemedView> </ThemedView>
</ThemedView> </ThemedView>
<ThemedView style={styles.divider}> { Platform.OS === 'ios' && (
<ThemedView style={[styles.dividerLine, { backgroundColor: Colors[scheme].text }]} /> <ThemedView style={styles.divider}>
<ThemedView style={[styles.dividerLine, { backgroundColor: Colors[scheme].text }]} />
<ThemedText type='subtitle' style={styles.dividerText}>or</ThemedText> <ThemedText type='subtitle' style={styles.dividerText}>or</ThemedText>
<ThemedView style={[styles.dividerLine, { backgroundColor: Colors[scheme].text }]} /> <ThemedView style={[styles.dividerLine, { backgroundColor: Colors[scheme].text }]} />
</ThemedView> </ThemedView>
)}
<ThemedView style={styles.verticallySpaced}> <ThemedView style={styles.verticallySpaced}>
<AppleSignInButton /> <AppleSignInButton />

View File

@ -108,6 +108,8 @@ export default function StatusCard({ visible, user, onClose, onUpdate }: StatusC
multiline multiline
style={styles.input} style={styles.input}
editable={!updating} editable={!updating}
onSubmitEditing={handleUpdateStatus}
returnKeyType='send'
/> />
<ThemedText style={styles.charCount}> <ThemedText style={styles.charCount}>
{newStatus.length}/80 {newStatus.length}/80