LinkButton

@Composable
fun LinkButton(label: String, uri: String, modifier: Modifier = Modifier, visited: Boolean = false, onActivateLink: () -> Boolean = { false })

Creates a org.gnome.gtk.LinkButton that opens a URI.

Parameters

label

The text displayed in the button.

uri

The URI that the button should open when activated.

modifier

Compose Modifier for layout and styling.

visited

Indicates whether the URI has already been visited.

onActivateLink

Callback triggered when the link is activated. Return true to handle the event manually.