this repo has no description
1import { useBottomTabBarHeight } from '@react-navigation/bottom-tabs';
2import { BlurView } from 'expo-blur';
3import { StyleSheet } from 'react-native';
4
5export default function BlurTabBarBackground() {
6 return (
7 <BlurView
8 // System chrome material automatically adapts to the system's theme
9 // and matches the native tab bar appearance on iOS.
10 tint="systemChromeMaterial"
11 intensity={100}
12 style={StyleSheet.absoluteFill}
13 />
14 );
15}
16
17export function useBottomTabOverflow() {
18 return useBottomTabBarHeight();
19}