mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import {useNavigationState} from '@react-navigation/native'
2import {getCurrentRoute} from 'lib/routes/helpers'
3
4export function useNavigationTabState() {
5 return useNavigationState(state => {
6 let currentRoute = state ? getCurrentRoute(state).name : 'Home'
7 return {
8 isAtHome: currentRoute === 'Home',
9 isAtSearch: currentRoute === 'Search',
10 isAtNotifications: currentRoute === 'Notifications',
11 isAtMyProfile: currentRoute === 'MyProfile',
12 }
13 })
14}