bounceable_effect 0.0.1 copy "bounceable_effect: ^0.0.1" to clipboard
bounceable_effect: ^0.0.1 copied to clipboard

Introducing a user-friendly and versatile on-tap bounce animation, which can be effortlessly applied to any widget of your choice. This interactive feature is designed to enhance the user experience a [...]

🏀 bounceable_effect #

Introducing a customizable on-tap bounce animation for any widget to enhance user experience and engagement.

🌟 Features #

  • Truly simple and efficient.
  • This package enables the creation of custom bouncing animations for widgets with just one click.
  • It uses an animation controller, which can be customized to a specified speed.
  • Additionally, users can choose the desired level of bouncing effect and select the preferred animation effect for their widgets.
  • Users can enable or disable the onTap feature and ensure that it is not sticky when scrolling.
  • Additionally, it prevents the triggering of multiple onTap events when tapping on multiple Bounceable widgets simultaneously, providing a unique and seamless user experience.

Example:

💻 Installation #

pubspec.yaml:

  dependencies:
    bounceable_effect: ^1.0.0

Import:

 import 'package:bounceable_effect/bounceable_effect.dart';

👨‍💻 Usage #

You can get reference by this simple example. How you can Wrap your widgets. it just work 🙂:

    BouncableEffect(
        onTap: () {},
        child: YourWidget(),
);

you can make it more customize by this example 🙂:

    BouncableEffect(
        effect: Curves.easeInBack,
        speed: 100,
        bouncing: .9,
        onTap: () {
            print('Click tapped!');
        },
        child: Icon(
                    Icons.star,
                    color: Colors.green,
                    size: 100,
                ),
        );

Additional information #

  • Add more animation effects.
  • More advance to utilize and fulfill the requirements of developers
4
likes
130
pub points
65%
popularity

Publisher

unverified uploader

Introducing a user-friendly and versatile on-tap bounce animation, which can be effortlessly applied to any widget of your choice. This interactive feature is designed to enhance the user experience and add a touch of creativity to your project. Moreover, it is fully customizable, allowing you to tailor the animation to your specific preferences. With this package, you can effortlessly add an extra layer of engagement to your application.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on bounceable_effect