Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'flicknow-make-choose-account-scrollable' into main

+10 -2
+10 -2
src/view/com/auth/login/Login.tsx
··· 3 3 ActivityIndicator, 4 4 Keyboard, 5 5 KeyboardAvoidingView, 6 + ScrollView, 6 7 StyleSheet, 7 8 TextInput, 8 9 TouchableOpacity, ··· 28 29 import {usePalette} from 'lib/hooks/usePalette' 29 30 import {useTheme} from 'lib/ThemeContext' 30 31 import {cleanError} from 'lib/strings/errors' 32 + import {isWeb} from 'platform/detection' 31 33 32 34 enum Forms { 33 35 Login, ··· 202 204 } 203 205 204 206 return ( 205 - <View testID="chooseAccountForm"> 207 + <ScrollView testID="chooseAccountForm" style={styles.maxHeight}> 206 208 <Text 207 209 type="2xl-medium" 208 210 style={[pal.text, styles.groupLabel, s.mt5, s.mb10]}> ··· 267 269 <View style={s.flex1} /> 268 270 {isProcessing && <ActivityIndicator />} 269 271 </View> 270 - </View> 272 + </ScrollView> 271 273 ) 272 274 } 273 275 ··· 990 992 marginRight: 5, 991 993 }, 992 994 dimmed: {opacity: 0.5}, 995 + 996 + maxHeight: { 997 + // @ts-ignore web only -prf 998 + maxHeight: isWeb ? '100vh' : undefined, 999 + height: !isWeb ? '100%' : undefined, 1000 + }, 993 1001 })