Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Add long press newtab to footer nav

+8 -1
+8 -1
src/view/shell/mobile/index.tsx
··· 151 151 const onPressMenu = () => setMainMenuActive(true) 152 152 const onPressNotifications = () => store.nav.navigate('/notifications') 153 153 const onPressTabs = () => toggleTabsMenu(!isTabsSelectorActive) 154 + const doNewTab = (url: string) => () => store.nav.newTab(url) 154 155 155 156 // tab selector animation 156 157 // = ··· 320 321 onClose={() => toggleTabsMenu(false)} 321 322 /> 322 323 <SafeAreaView style={styles.bottomBar}> 323 - <Btn icon={isAtHome ? 'home-solid' : 'home'} onPress={onPressHome} /> 324 + <Btn 325 + icon={isAtHome ? 'home-solid' : 'home'} 326 + onPress={onPressHome} 327 + onLongPress={doNewTab('/')} 328 + /> 324 329 <Btn 325 330 icon={isAtSearch ? 'search-solid' : 'search'} 326 331 onPress={onPressSearch} 332 + onLongPress={doNewTab('/search')} 327 333 /> 328 334 <Btn 329 335 icon={isTabsSelectorActive ? 'clone' : ['far', 'clone']} ··· 333 339 <Btn 334 340 icon={isAtNotifications ? 'bell-solid' : 'bell'} 335 341 onPress={onPressNotifications} 342 + onLongPress={doNewTab('/notifications')} 336 343 notificationCount={store.me.notificationCount} 337 344 /> 338 345 <Btn