splash_route 0.0.2 copy "splash_route: ^0.0.2" to clipboard
splash_route: ^0.0.2 copied to clipboard

It is just a route with fancy animation. It is used to show the splash animation while navigating to another page.

Splash Route #

It is just a route with fancy animation. It is used to show the splash animation while navigating to another page.



Demo #

Installation #

Add splash_route: ^0.0.2 to your pubspec.yaml dependecies. And import it:

import 'package:splash_route/splash_route.dart';
copied to clipboard

How to use #

Simply add a SplashRoute as route inside a Navigator with required params.

  void _goToNextPage(
    BuildContext context,
    FractionalOffset position,
    Color splashColor,
    Duration duration,
  ) {
    Navigator.of(context).push(
      SplashRoute(
        targetPage: TargetPage(
          appBarColor: splashColor,
        ),
        splashColor: splashColor,
        startFractionalOffset: position,
        transitionDuration: duration,
      ),
    );
  }
copied to clipboard

16
likes
140
points
44
downloads

Publisher

verified publisherdelwar.info

Weekly Downloads

2024.09.16 - 2025.03.31

It is just a route with fancy animation. It is used to show the splash animation while navigating to another page.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on splash_route