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

A new Flutter package project.

Splash Route #

It is a simple route with fancy animation.



Demo #

Installation #

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

import 'package:splash_route/splash_route.dart';

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,
      ),
    );
  }