Kotlin Notes

From James's Wiki
Revision as of 13:19, 25 February 2025 by Ractive (talk | contribs) (Created page with "=== Custom Listeners === <syntaxhighlight lang="kotlin"> var onDismissListener: (() -> Unit)? = null </syntaxhightlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Custom Listeners

<syntaxhighlight lang="kotlin">

   var onDismissListener: (() -> Unit)? = null

</syntaxhightlight>