-1

I am working with another party system. When I sent request they provide me a URL. Which I load in webview. There is no way to acces that webview. I want to go automatically to another screen after done working in webview. Is there any way?

Masuk Helal Anik
  • 2,155
  • 21
  • 29

1 Answers1

1

If I understood your problem correctly, you want to load the WebView and then come back to the app again, after performing some actions.

There is a way to exchange the data between your app and WebView. Please check this article.

You can also use WebView's onNavigationStateChange prop to achieve your goal, if finishing the work is signalised by the URL change.

<WebView 
  onNavigationStateChange={this.yourAction}
/>
user3764429
  • 402
  • 2
  • 12