Is it possible to track changes WebView URL? ```v...
# compose
k
Is it possible to track changes WebView URL?
Copy code
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("<http://example.com/xxx>"))
ContextCompat.startActivity(context, intent, null) // open WebView

// How to  track  wevViewURL?

if (webViewURL == "/finish") {
  // How to close webview?
}