An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

Disable the drawer and reset the nav when the user logs out or switches accounts

+3 -1
+2
src/view/screens/Settings.tsx
··· 68 68 } 69 69 const onPressAddAccount = () => { 70 70 track('Settings:AddAccountButtonClicked') 71 + navigation.navigate('HomeTab') 72 + navigation.dispatch(StackActions.popToTop()) 71 73 store.session.clear() 72 74 } 73 75 const onPressChangeHandle = () => {
+1 -1
src/view/shell/index.tsx
··· 46 46 onOpen={onOpenDrawer} 47 47 onClose={onCloseDrawer} 48 48 swipeEdgeWidth={winDim.width} 49 - swipeEnabled={!canGoBack}> 49 + swipeEnabled={!canGoBack && store.session.hasSession}> 50 50 <TabsNavigator /> 51 51 </Drawer> 52 52 </ErrorBoundary>