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?
Asked
Active
Viewed 679 times
1 Answers
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
-
Thanks for the suggestion but none of the solution is working for me – Masuk Helal Anik Apr 01 '19 at 11:15
-
Please update your example and add some code snippets or please tell more about the use case – user3764429 Apr 01 '19 at 11:17