Balloon

fun Balloon(modifier: Modifier = Modifier, builder: Balloon.Builder, key: Any? = null, balloonContent: @Composable () -> Unit? = null, content: @Composable (BalloonWindow) -> Unit)

Balloon allows you to display tooltips, which is fully customizable with an arrow and animations for Compose.

Parameters

modifier

Modifier used to adjust the layout or drawing content.

builder

Balloon.Builder that includes details of tooltips to be displayed.

key

key to recompose the content of balloon.

balloonContent

the content to be displayed inside the balloon.

content

the main content of the screen. You should use the BalloonWindow to control balloon.