I am wondering if it is possible to integrate TWA (Trusted Web Activities) into an existing React Native project. This way I could have a section in my app where costumers can use my PWA inside my app. As fallback for iOS I would use something like their WebView. If it is possible, how would I go about implementing it?
问问题
391 次
1 回答
0
简而言之,是的,可以将 Trusted Web Activity 集成到 React Native App 中。
你需要创建一个Android Native Module ,将Android Browser Helper包装到 React Native API 中。由于您想将 Trusted Web Activity 用作应用程序的一部分,因此您可能会考虑包装TwaLauncher。
然后,您需要为 iOS 实现一个模块,该模块在 React 中具有相同的 API,但将使用 WebView 作为实现。
似乎有人已经为 Android 创建了一个包装器(但我还没有测试过)。
于 2021-02-23T08:07:08.107 回答