Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Add scrolling to menu

+4 -2
+4 -2
src/view/shell/mobile/Menu.tsx
··· 1 1 import React, {useEffect} from 'react' 2 2 import { 3 + ScrollView, 3 4 StyleProp, 4 5 StyleSheet, 5 6 TouchableOpacity, ··· 97 98 ) 98 99 99 100 return ( 100 - <View style={[styles.view, pal.view]}> 101 + <ScrollView style={[styles.view, pal.view]}> 101 102 <TouchableOpacity 102 103 onPress={() => onNavigate(`/profile/${store.me.handle}`)} 103 104 style={styles.profileCard}> ··· 207 208 {VersionNumber.buildVersion}) 208 209 </Text> 209 210 </View> 210 - </View> 211 + <View style={{height: 100}} /> 212 + </ScrollView> 211 213 ) 212 214 }, 213 215 )