Is there an API on the jvm target to show icons in...
# compose-desktop
p
Is there an API on the jvm target to show icons in the window frame. See below, notice the back arrow icon and refresh icon. It was taken on a Mac Chrome App
a
Not in Compose for Desktop itself.
and not in AWT, to the best of my knowledge
If you really want to, you can make an undecorated window and draw the window title yourself. Then you can do anything.
p
undecorated window
🤔, sounds like another term to my dictionary. You have some documentation/example to see what you refer to. Is that API still accessible from compose-multiplatform for jvm API, or I need to create custom platform bindings?
a
It’s just
Window(undecorated=true)
or
singleWindowApplication(undecorated=true)
It’s part of the regular compose for desktop
p
Ahh 😯 ok. Thanks so much Sr.
a
np