Class BalloonKt

  • All Implemented Interfaces:

    
    public final class BalloonKt
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static Unit Balloon(Modifier modifier, Balloon.Builder builder, Object key, Function0<Unit> balloonContent, Function1<BalloonWindow, Unit> content) Balloon allows you to display tooltips, which is fully customizable with an arrow and animations for Compose.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • Balloon

        @Composable() final static Unit Balloon(Modifier modifier, Balloon.Builder builder, Object key, Function0<Unit> balloonContent, Function1<BalloonWindow, Unit> content)

        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.