Skip to content

1.2.9

Compare
Choose a tag to compare
@skydoves skydoves released this 25 Dec 06:42
· 962 commits to main since this release
9d4529d

🎉 Released a new version 1.2.9! 🎉

What's New?

  • Fixed a balloon popup's shadow getting clipped (#134)

Added a BalloonSizeSpec (#135)

A specification interface for determining sizes of the Balloon materials.
We can wrap some materials depending on their size of content using this interface.

.setWidth(BalloonSizeSpec.WRAP)
.setHeight(BalloonSizeSpec.WRAP)
.setArrowSize(BalloonSizeSpec.WRAP)

Deprecated previous balloon lazy extension and added new extensions.

Previous (Deprecated)
private val customListBalloon by balloon(CustomListBalloonFactory::class)
After
private val customListBalloon by balloon<CustomListBalloonFactory>()