diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-02 09:34:49 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-11-02 09:34:49 -0700 |
commit | 4e5a99d4d32f049960d6610ba8853751007ef9a1 (patch) | |
tree | b5ff8b4fae23b2775e1e417563303de139f14308 /src | |
parent | 29bfed78f78f284d5956d3e3b621a37c0d7d830d (diff) | |
parent | 5f135aa0218e7a1c1277dcb9f0b14ca28fae9b25 (diff) | |
download | voidsky-4e5a99d4d32f049960d6610ba8853751007ef9a1.tar.zst |
Merge branch 'make-choose-account-scrollable' of https://github.com/flicknow/social-app into flicknow-make-choose-account-scrollable
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/login/Login.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/view/com/auth/login/Login.tsx b/src/view/com/auth/login/Login.tsx index fac923393..2e9926a56 100644 --- a/src/view/com/auth/login/Login.tsx +++ b/src/view/com/auth/login/Login.tsx @@ -3,6 +3,7 @@ import { ActivityIndicator, Keyboard, KeyboardAvoidingView, + ScrollView, StyleSheet, TextInput, TouchableOpacity, @@ -202,7 +203,7 @@ const ChooseAccountForm = ({ } return ( - <View testID="chooseAccountForm"> + <ScrollView testID="chooseAccountForm"> <Text type="2xl-medium" style={[pal.text, styles.groupLabel, s.mt5, s.mb10]}> @@ -267,7 +268,7 @@ const ChooseAccountForm = ({ <View style={s.flex1} /> {isProcessing && <ActivityIndicator />} </View> - </View> + </ScrollView> ) } |