最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

reactjs - React Navigation 7 Toast with Static Api - Stack Overflow

programmeradmin2浏览0评论

I want to have a Toast (view on top of everything else) that is controlled by a contextual state. In order to do this, I add this at the App level of my basic Static Api navigation:

const RootStack = createNativeStackNavigator({
    screens: {
        Home: HomeScreen,
        Profile: ProfileScreen,
    }
}

const RootNavigation = createStaticNavigation(RootStack)

const App = () => {
    return (
        <SafeAreaProvider>
            <GestureHandlerRootView>
                <Provider>
                    <RootNavigation />
                    <ToastContainer />
                </Provider>
            </GestureHandlerRootView>
        </SafeAreaProvider>
    )
}

The ToastContainer is the following:

export function ToastContainer() {
    const [toast, setToast] = useAtom(Atom.currentToast)
    const navigation = useNavigation()

    if (toast) {
        return (
            <View />
        )
    } else {
        return undefined
    }
}

The problem is that useNavigation() doesn't work here, because ToastContainer is not inside a navigation context.

I tried this with no luck (RootNavigation doesn't accept children)

<RootNavigation>
     <ToastContainer />
</RootNavigation>

Also, I tried creating a component and wrapping it with NavigationContainer (similar than I was doing with React Navigation 6 with Dinamic Api, that works):

const RootComponent = createComponentForStaticNavigation(RootStack, 'blabla')
<NavigationContainer>
    <RootComponent />
    <ToastContainer />
</NavigationContainer>

UPDATE

With this last code, the navigation works 99% of the cases. Is working well when using navigation.navigate() but doesn't work when using navigation.popTo()

发布评论

评论列表(0)

  1. 暂无评论