diff options
author | dan <dan.abramov@gmail.com> | 2023-10-13 15:29:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 15:29:50 +0100 |
commit | d5ccbd76d5ffc9280f0109138f608b94bee0aadf (patch) | |
tree | 84fd90b0db3e95cc194ce71536c3068d4bc8dd2a /src/view/shell/bottom-bar/BottomBarStyles.tsx | |
parent | eba9f8a1662e78ff79b7d179efa8dec261d61d87 (diff) | |
download | voidsky-d5ccbd76d5ffc9280f0109138f608b94bee0aadf.tar.zst |
Disable events on hidden bars (#1686)
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarStyles.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarStyles.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarStyles.tsx b/src/view/shell/bottom-bar/BottomBarStyles.tsx index ae9381440..c175ed848 100644 --- a/src/view/shell/bottom-bar/BottomBarStyles.tsx +++ b/src/view/shell/bottom-bar/BottomBarStyles.tsx @@ -65,4 +65,7 @@ export const styles = StyleSheet.create({ borderWidth: 1, borderRadius: 100, }, + disabled: { + pointerEvents: 'none', + }, }) |