commonMain.com.bselzer.ktx.intent.browser.Browser.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intent-jvm Show documentation
Show all versions of intent-jvm Show documentation
Based on Android intents.
The newest version!
package com.bselzer.ktx.intent.browser
interface Browser {
/**
* Opens the browser and navigates to the given [uri].
*
* @return true if successful
*/
fun open(uri: String): Boolean
companion object : Browser by SystemBrowser()
}
internal expect class SystemBrowser() : Browser
© 2015 - 2024 Weber Informatics LLC | Privacy Policy