Created
February 11, 2025 18:08
-
-
Save vitoksmile/b86f3ffc3ee7b40b4a36605470e2bc3c to your computer and use it in GitHub Desktop.
ComposeHints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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