bubble_pop_up 2.0.2 copy "bubble_pop_up: ^2.0.2" to clipboard
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
copied to clipboard

Then run:

flutter pub get
copied to clipboard

🛠️ Usage #

Simply wrap your widget with BubblePopUp and specify the pop-up widget and configuration.

Example 1: Right-Aligned Pop-up #

Example 1

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),
    ),
  ),
);
copied to clipboard

Example 2: Downward Pop-up #

Example 2

The only difference from Example 1 is the arrowDirection parameter:

arrowDirection: ArrowDirection.down,
copied to clipboard

🎨 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),
);
copied to clipboard

🔄 Auto Border Detection #

The package automatically adjusts the pop-up’s position if it would overflow the screen.

Same Axis Collision Cross Axis Collision
same-axis cross-axis

📌 Example Scenarios #

  1. Tooltips – Provide hints or explanations.
  2. Dropdown-style menus – Display interactive options.
  3. 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!

3
likes
150
points
401
downloads

Publisher

verified publishervishnuworld.com

Weekly Downloads

2024.09.19 - 2025.04.03

A package to provide bubble pop ups for any Widget over anywhere.

Repository (GitHub)

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

advanced_polygons, flutter, helpful_components, num_pair

More

Packages that depend on bubble_pop_up