1.2.9
🎉 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>()