Hello! There is any way to open another website? I...
# compose-web
a
Hello! There is any way to open another website? I not found intents on Wasm so I really dont know how open a external links
m
You can use
LocalUriHandler
inside compose:
Copy code
val uriHandler = LocalUriHandler.current

LaunchedEffect(Unit) {
    uriHandler.openUri("<https://www.google.com>")
}
👍 1
a
Thx!