Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 21, 2025

This PR contains the following updates:

Package Change Age Confidence
com.github.skydoves:balloon-compose 1.6.131.7.1 age confidence

Release Notes

skydoves/balloon (com.github.skydoves:balloon-compose)

v1.7.1

Compare Source

What's Changed

New Contributors

Full Changelog: skydoves/Balloon@1.7.0...1.7.1

v1.7.0

Compare Source

Release Notes for Balloon 1.7.0.

New Features
  • Introduce Modifier.balloon() and BalloonState for Jetpack Compose (#​904)
    • New modifier-based API for attaching balloon tooltips to composables
    • rememberBalloonState() for managing balloon state
    • Deprecates the Balloon() composable and BalloonWindow interface
  • Support individual properties for BalloonOverlayRoundRect (#​903)
    • Allows setting individual corner radii for overlay round rectangles
  • Implement effective arrow sizes (#​900)
    • Better arrow size calculations for improved positioning

Now, the Balloon composable function will be deprecated. Migration guides from Balloon composable to Modifier.balloon():

Before (Deprecated)

  var balloonWindow: BalloonWindow? by remember { mutableStateOf(null) }

  Balloon(
    builder = builder,
    onBalloonWindowInitialized = { balloonWindow = it },
    onComposedAnchor = { balloonWindow?.showAlignTop() },
    balloonContent = {
      Text(text = "Tooltip content")
    },
  ) {
    Button(onClick = { balloonWindow?.showAlignTop() }) {
      Text(text = "Show Balloon")
    }
  }

After (New API)

  val balloonState = rememberBalloonState(builder)

  LaunchedEffect(Unit) {
    balloonState.showAlignTop()
  }

  Button(
    modifier = Modifier.balloon(balloonState) {
      Text(text = "Tooltip content")
    },
    onClick = { balloonState.showAlignTop() },
  ) {
    Text(text = "Show Balloon")
  }
Bug Fixes and Improvements
  • Disable focus to prevent focus highlight on D-pad navigation (#​902)
  • Apply stroke/border in non-clipped mode as well (#​901)
  • Migrate to Subcompose layout to measure layout sizes (#​898)
    • Fixes black screen issue during SplashScreen (#​786)
  • Correct measuring logic with adjusted padding sequences (#​897)
  • Use EXACTLY mode for fixed heights, AT_MOST for wrap content (#​896)
    • Fixes nested layout measurement issues
  • Fix: Clear any theme-applied background tint (#​893)
Deprecations

The following APIs are now deprecated in favor of the new Modifier.balloon() API:

  • Balloon() composable - Use Modifier.balloon() with rememberBalloonState()
  • BalloonWindow interface - Use BalloonState
  • rememberBalloonWindow() - Use rememberBalloonState()
  • awaitBalloonWindows() and AwaitBalloonWindowsDsl

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner December 21, 2025 08:50
@renovate renovate bot force-pushed the renovate/ballooncompose branch from a44851e to 8721b89 Compare December 28, 2025 18:14
@renovate renovate bot changed the title fix(deps): update dependency com.github.skydoves:balloon-compose to v1.7.0 fix(deps): update dependency com.github.skydoves:balloon-compose to v1.7.1 Dec 28, 2025
@renovate renovate bot force-pushed the renovate/ballooncompose branch from 8721b89 to 5e71018 Compare December 31, 2025 16:11
@Hyobeen-Park Hyobeen-Park merged commit 7bbfa28 into develop Jan 2, 2026
1 check passed
@Hyobeen-Park Hyobeen-Park deleted the renovate/ballooncompose branch January 2, 2026 20:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants