spxbhuhb / adaptive

Consolidated full-stack application development library for Kotlin
https://adaptive.fun
Apache License 2.0
3 stars 0 forks source link

Android multiple onClick handlers #44

Open toth-istvan-zoltan opened 4 months ago

toth-istvan-zoltan commented 4 months ago

This does not work on Android, works on browser. The event handler on text is OK, but the one on row is skipped.

row(2.gridCol, greenGradient, cornerRadius, AlignItems.center, onClick { counter ++ }) {
    maxSize
    text("Snooze") .. textColor(white) .. textMedium .. noSelect .. onClick { println("Hello World!") }
}