ripple_navigation 1.0.0 copy "ripple_navigation: ^1.0.0" to clipboard
ripple_navigation: ^1.0.0 copied to clipboard

outdated

Navigate with ripple animation effect

ripple_navigation #

Navigate with ripple animation effect

Usage #

import 'package:ripple_navigation/ripple_navigation.dart';

After that select the widget you want to start your ripple and wrap with RippleLocation widget.

!You can check from the example project!

RippleLocation(
    rippleController: rippleController,
    child: FloatingActionButton(
        onPressed: onPressed,
        tooltip: 'Increment',
        child: Icon(Icons.add),
    ),
)

Add your controller to your widget

GlobalKey<RippleLocationState> rippleController = GlobalKey();

after you provide both you can navigate with pushRippleTransitionPage(context,widget) method

rippleController.currentState.pushRippleTransitionPage(
  context,
  SecondPage(),
);

or just animate your ripple

rippleController.currentState.forwardRipple();

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

21
likes
0
pub points
14%
popularity

Publisher

verified publisheronatcipli.dev

Navigate with ripple animation effect

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on ripple_navigation