Skip to content

Releases: TorryDo/Floating-Bubble-View

FloatingBubbleView v0.6.5

27 Mar 03:33
3234d16
Compare
Choose a tag to compare

What's Changed

  • Bugfix/bubble touch by @TorryDo in #65
  • Add new API triggerClickablePerimeterPx
  • Fix close-bubble still visible in some cases

Full Changelog: 0.6.4...0.6.5

FloatingBubbleView v0.6.4

13 Jan 14:30
Compare
Choose a tag to compare

Bug Fix 🐞🐛

  • fix close-bubble remains visible in some cases (#50)

FloatingBubbleView v0.6.3

18 Nov 14:21
Compare
Choose a tag to compare

🍀an Android library that adds floating views on top of your screen🎨, supports both XML and Jetpack Compose

FloatingBubbleView v0.6.1

11 Sep 14:39
e05267e
Compare
Choose a tag to compare

Floating-Bubble-View 0.6.1 🍀

  • Revamp Library (a little) ✏️
  • Upgrade dependencies 👍
  • Improve dragging experience 📱
  • Animate to the edge after layout changed 🎨
  • Expanded-Bubble can be draggable now 💘
  • And more...

bubble.mp4
expanded-bubble-dragging.mp4

FloatingBubbleView v0.5.6

01 Aug 07:04
b589c90
Compare
Choose a tag to compare

Fix some small issues 🐞🐛
Clean codes
Upgrade dependencies

and

No API changes. ✨🎉🎊

FloatingBubbleView v0.5.5

14 Jul 03:58
73464c2
Compare
Choose a tag to compare

Fix: 🐛

  • the bubble animate to the edge without noticing the cutout (notch). Fixed thanks to the helps from ScreenEasy
  • the close-bubble displays incorrectly in DYNAMIC_CLOSE_BUBBLE (on both portrait and landscape mode). in previous versions, it slightly move to the left.

P/s: Fortunately, no API Change were made in this release. Just update and enjoy. 🙆‍♀️

fbv-v0.5.5.mp4

FloatingBubbleView v0.5.4

08 Jul 07:10
6b2cede
Compare
Choose a tag to compare

NEW: 🔥

  • .bubble(view)
  • .bubble(composable)
  • ViewHelper : I've removed passing drawable & bitmap. Using this approach to quickly create a view from drawable/bitmap, or you can create your own view 🌟

CHANGE: ⚙

  • .bubble(drawable) -> removed, use ViewHelper.fromDrawable(...) as bubble parameter instead
  • .bubble(bitmap) -> removed, use ViewHelper.fromBitmap(...) as bubble parameter instead
  • remove onClick() method from FloatingBubble.Listener: from now on, you can set click event directly (View.setOnClickListener(), Modifier.clickable{}, ...)

FloatingBubbleView v0.5.3

29 Apr 10:12
cbf4485
Compare
Choose a tag to compare

CHANGE: ⚙

  • setupNotificationBuilder() -> initialNotification()

NEW: ✏

  • notify(Notification)

FIX: 🐛

  • #28 : able to pass parameters to the notification.
  • #32 : bubble in landscape mode is now working "fine". there are still some minor UI issues, but I'll fix them later.

FloatingBubbleView v0.5.2

16 Apr 10:45
bc01c9c
Compare
Choose a tag to compare

FIX 🐛:

  • #29 : onUp() callback is not being called in some cases
  • #28 : The bubble/ex-view instance will now be initialized only when showBubbles() and showExpandableView() are being called

CHANGE ✏:

  • #30 : Update startLocation() to take input as dp values. You can still pass px values by using startLocationPx()
  • closablePerimeter() -> distanceToClose()

FloatingBubbleView v0.5.1

06 Apr 02:42
599b231
Compare
Choose a tag to compare

NEW ⭐

  • Route class
  • initialRoute(): see README
  • currentRoute()
  • showBubbles()
  • removeBubbles()
  • showExpandableView()
  • removeExpandableView()
  • OverrideDispatchKeyEvent compose function

FIX 🐛

  • Crashing when remove the composable before the animation stop ✅
  • Unable to use BackHandler (because we don't have activity in service) ✅