delwar36 / splash_route

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

Home Page:https://pub.dev/packages/splash_route

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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';

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

About

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

https://pub.dev/packages/splash_route

License:MIT License


Languages

Language:C++ 43.2%Language:Dart 23.0%Language:CMake 20.4%Language:HTML 10.1%Language:C 1.9%Language:Swift 1.0%Language:Kotlin 0.3%Language:Objective-C 0.1%