Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Disable events on hidden bars (#1686)

authored by

dan and committed by
GitHub
d5ccbd76 eba9f8a1

+15 -1
+11 -1
src/view/com/pager/FeedsTabBarMobile.tsx
··· 49 49 ) 50 50 51 51 return ( 52 - <Animated.View style={[pal.view, pal.border, styles.tabBar, transform]}> 52 + <Animated.View 53 + style={[ 54 + pal.view, 55 + pal.border, 56 + styles.tabBar, 57 + transform, 58 + store.shell.minimalShellMode && styles.disabled, 59 + ]}> 53 60 <View style={[pal.view, styles.topBar]}> 54 61 <View style={[pal.view]}> 55 62 <TouchableOpacity ··· 116 123 }, 117 124 title: { 118 125 fontSize: 21, 126 + }, 127 + disabled: { 128 + pointerEvents: 'none', 119 129 }, 120 130 })
+1
src/view/shell/bottom-bar/BottomBar.tsx
··· 87 87 pal.border, 88 88 {paddingBottom: clamp(safeAreaInsets.bottom, 15, 30)}, 89 89 footerMinimalShellTransform, 90 + store.shell.minimalShellMode && styles.disabled, 90 91 ]}> 91 92 <Btn 92 93 testID="bottomBarHomeBtn"
+3
src/view/shell/bottom-bar/BottomBarStyles.tsx
··· 65 65 borderWidth: 1, 66 66 borderRadius: 100, 67 67 }, 68 + disabled: { 69 + pointerEvents: 'none', 70 + }, 68 71 })