FLUTTER ECOSYSTEM

delwar36/splash_route

Es ist nur eine Route mit einer ansprechenden Animation. Sie wird verwendet, um die Splash-Animation beim Navigieren zu einer anderen Seite anzuzeigen.

Projektcover von Splash-Route
Stars
1
Forks
0
Letzter Push (UTC)
16.02.2022
Projektstatus
Aktiv
Md Delwar Hossain GitHub avatar
GITHUB User

Md Delwar Hossain ↗

Entrepreneur | Building Autonomous Workforce

InnovexITBangladeshOffizielle Website ↗
SprachenC++DartCMakeHTMLCSwiftKotlinObjective-C

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 3 Einträge
  • flutter{"sdk":"flutter"}
  • flutter_testEntwicklung{"sdk":"flutter"}
  • flutter_lintsEntwicklung^1.0.0

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

Splash Route

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



Demo

https://raw.githubusercontent.com/delwar36/splash_route/master/example/splashRoute.gif

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