Skip to content

Instantly share code, notes, and snippets.

@vitoksmile
Created February 11, 2025 18:08
Show Gist options
  • Select an option

  • Save vitoksmile/b86f3ffc3ee7b40b4a36605470e2bc3c to your computer and use it in GitHub Desktop.

Select an option

Save vitoksmile/b86f3ffc3ee7b40b4a36605470e2bc3c to your computer and use it in GitHub Desktop.
ComposeHints
@Stable
class HintController internal constructor() {
internal var hint by mutableStateOf<HintAnchorState?>(null)
fun show(hint: HintAnchorState) {
this.hint = hint
}
fun dismiss() {
hint = null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment