Files
mcbeno-app/components/ui/TabBarBackground.ios.tsx
b3ni15 84c5ee7a7f Initial commit
Generated by create-expo-app 3.4.2.
2025-07-26 23:59:20 +02:00

20 lines
547 B
TypeScript

import { useBottomTabBarHeight } from '@react-navigation/bottom-tabs';
import { BlurView } from 'expo-blur';
import { StyleSheet } from 'react-native';
export default function BlurTabBarBackground() {
return (
<BlurView
// System chrome material automatically adapts to the system's theme
// and matches the native tab bar appearance on iOS.
tint="systemChromeMaterial"
intensity={100}
style={StyleSheet.absoluteFill}
/>
);
}
export function useBottomTabOverflow() {
return useBottomTabBarHeight();
}