hey everyone, does Compose has something out of th...
# compose-android
h
hey everyone, does Compose has something out of the box for a long press pop up text on an icon button (or menu items at a Toolbar) like there is with XML that automatically disappears after 1-2 secs
c
As far as I know that is by use of a
tooltip
and it's something you have to add it yourselves. https://medium.com/@MrAndroid/tooltips-in-jetpack-compose-d7667cb5ae0d
This is just the first link I found while looking for a tooltip example. There might be a better way to do it.
h
PlainTooltipBox Is what I needed and I found it