hold_on_pop

Creator: coderz1093

Last updated:

Add to Cart

Description:

hold on pop

Hold on pop #
hold_on_pop is a Flutter package that provides a widget that shows a popup when the user presses their finger and closes when they release it (like Instagram).
Features #

Provides a customizable widget that shows a popup when the user holds their finger on it.
Supports customizing the look and feel of the widget, including the size, color, and shape of the popup.
Provides callbacks for handling when the user presses and releases their finger on the widget.


Getting Started #
To use hold_on_pop, add hold_on_pop as a dependency in your pubspec.yaml file:
dependencies:
hold_on_pop: ^1.0.0
copied to clipboard
Then, import the package in your Dart code:
import 'package:hold_on_pop/hold_on_pop.dart';
copied to clipboard
Usage #
hold_on_pop provides a HoldOnPop widget that you can use in your Flutter app. The widget is typically used to provide contextual help or information to the user when they long press on a specific part of the screen.
Here's an example of how to use the HoldOnPop widget:
HoldOnPop(
child: Container(
height: 100,
width: 100,
color: Colors.blue,
),
popup: Container(
height: 50,
width: 50,
color: Colors.red,
),
);
copied to clipboard
In this example, we create a HoldOnPop widget with a blue Container as the child. We also define a popup property that creates a red Container as the popup.
Additional Information #

For more information on how to use the HoldOnPop widget, please see the example app in the /example directory.
If you encounter any issues or have any suggestions for improving the package, please file an issue on the GitHub repository.


Changelog #
See CHANGELOG.md for the latest updates and changes to the package.
License #
This package is available under the MIT License. See the LICENSE file for more information.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.