ripple_effect 0.1.0 copy "ripple_effect: ^0.1.0" to clipboard
ripple_effect: ^0.1.0 copied to clipboard

outdated

An easy way to achieve a ripple effect on you flutter app.

ripple_effect #

A easy way to achieve a ripple effect on you flutter app.

Usage #

First you need to wrap your page/Scaffold with the RipplePage widget, the ripple efect will growth until this widget. Then wrap with the RippleEffect where the animation should begin. When the animation should begin, call the RippleEffect.start method passing you callback method(often navigate to other page).

The RipplePage and RippleEffect widgets need their GlobalKeys respectively to work.

Example #

class Stateless extends StatelessWidget {
  final pageKey = RipplePage.createGlobalKey();
  final effectKey = RippleEffect.createGlobalKey();
  
  @override
  Widget build(BuildContext context) {
    return RipplePage(
      child: Scaffold(
        body: Center(),
        floatingActionButton: RippleEffect(
          pageKey: pageKey,
          effectKey: effectKey,
          color: Colors.blue,
          child: FloatingActionButton(
            backgroundColor: Colors.blue,
            onPressed: () =>
                 RippleEffect.start(effectKey, () => toNextPage(context)),
            child: Icon(Icons.arrow_back),
          ),
        )
      ),
    );
  }
}
32
likes
30
pub points
62%
popularity

Publisher

verified publisherericdallo.dev

An easy way to achieve a ripple effect on you flutter app.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, rect_getter

More

Packages that depend on ripple_effect