Hello all! I am new to Compose Multiplatform with ...
# compose
p
Hello all! I am new to Compose Multiplatform with no prior experience with Jetpack Compose. I am finding it delightful to work with so far! Today I am experimenting
ExposedDropdownMenuBox
with an
OutlinedTextField
for a desktop application and have some questions on the expected pointer hover. Below is a sample project using Compose Multiplatform 1.8.0-beta02. Question 1: the pointer hovering the text field in the menu box is the "text" pointer, should it not be the default "arrow" pointer? Queston 2: applying the modifier
pointerHoverIcon(PointerIcon.Default)
to the text field inside the menu box has no effect, is this intended? Question 3: applying the modifier
pointerHoverIcon(PointerIcon.Default,true)
does change the pointer, but in my desktop I can clearly see the pointer flickering quickly from the "text" pointer to the "arrow" pointer, is this a bug? https://github.com/pedrolamarao/sample-compose-outlinedtextfield-pointerhovericon