При использовании createNativeBottomTabNavigator для создания нижних вкладок в стиле Liquid Glass я получаю следующую ошибку:
ERROR [TypeError: Cannot read property 'Host' of undefined]
[React] { [TypeError: Cannot read property 'Host' of undefined]
componentStack: '\n at NativeBottomTabView
(http://192.168.5.104:8081/index.bundle/ ... :474454:21)\n
at PreventRemoveProvider
(http://192.168.5.104:8081/index.bundle/ ... :167106:25)\n
at NavigationStateListenerProvider
(http://192.168.5.104:8081/index.bundle/ ... :169790:21)\n
at NavigationContent (http://192.168.5.104:8081/index.bundle/ ... rmes&trans
Это код (тот же, что и в документации):
import { createNativeBottomTabNavigator } from '@react-navigation/bottom-tabs/unstable';
const MyTabs = createNativeBottomTabNavigator({
screens: {
Home: HomeScreen,
Profile: ProfileScreen,
},
});
Подробнее здесь: https://stackoverflow.com/questions/798 ... tabnavigat