bubble_pop_up 2.0.2
bubble_pop_up: ^2.0.2 copied to clipboard
A package to provide bubble pop ups for any Widget over anywhere.
bubble_pop_up #
Easily create highly customizable bubble pop-ups anywhere in your Flutter app. Perfect for tooltips, contextual popups, and interactive UI elements with flexible positioning and auto-adjustment.
✨ Features #
- Attach pop-ups to any widget – Works anywhere in your app.
- Customizable positioning – Control pop-up alignment & arrow direction.
- Auto border detection – Adjusts position automatically to avoid overflow.
- Flexible widget support – Use any widget inside the pop-up.
- Lightweight & performant – No unnecessary dependencies.
🚀 Installation #
Add bubble_pop_up
to your pubspec.yaml
:
dependencies:
bubble_pop_up: latest
Then run:
flutter pub get
🛠️ Usage #
Simply wrap your widget with BubblePopUp
and specify the pop-up widget and configuration.
Example 1: Right-Aligned Pop-up #
BubblePopUp(
key: popUpKey,
config: BubblePopUpConfig(
baseAnchor: Alignment.topLeft, // Position of the arrow's POC on the base widget
popUpAnchor: Alignment.bottomRight, // Position of the arrow on the pop-up widget
arrowDirection: ArrowDirection.right,
popUpBorderRadius: popUpBorderRadius,
baseBorderRadius: BorderRadius.circular(10),
),
popUpColor: Colors.green,
popUp: Container(
width: 200,
height: 150,
decoration: BoxDecoration(
color: Colors.green,
borderRadius: popUpBorderRadius,
),
),
child: Container( // Base widget
width: 100,
height: 50,
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(10),
),
),
);
Example 2: Downward Pop-up #
The only difference from Example 1 is the arrowDirection
parameter:
arrowDirection: ArrowDirection.down,
🎨 Customization #
You can fully customize the position, appearance, and behavior of the pop-up using BubblePopUpConfig
.
BubblePopUpConfig(
baseAnchor: Alignment.bottomCenter, // Position of the arrow's POC on the base widget
popUpAnchor: Alignment.topCenter, // Position of the arrow on the pop-up widget
arrowDirection: ArrowDirection.up,
arrowCornerRadius: 4,
popUpBorderRadius: BorderRadius.circular(12),
baseBorderRadius: BorderRadius.circular(12),
);
🔄 Auto Border Detection #
The package automatically adjusts the pop-up’s position if it would overflow the screen.
Same Axis Collision | Cross Axis Collision |
---|---|
![]() |
![]() |
📌 Example Scenarios #
- Tooltips – Provide hints or explanations.
- Dropdown-style menus – Display interactive options.
- Chat bubbles – Create a message-like pop-up effect.
📢 Request Features or Report Issues #
Want a new feature or found a bug? Create an issue here:
➡️ GitHub Issues
📝 License #
bubble_pop_up
is open-source and available under the MIT license.
🚀 Enhance your Flutter app with beautiful pop-ups today!