FLUTTER ECOSYSTEM

delwar36/splash_route

これは、魅力的なアニメーション付きのルートです。別のページに移動する際のスプラッシュアニメーションを表示するために使用されます。

スプラッシュルート のプロジェクト画像
Stars
1
Forks
0
最終プッシュ(UTC)
2022/02/16
プロジェクト状態
公開中
Md Delwar Hossain GitHub avatar
GITHUB User

Md Delwar Hossain ↗

Entrepreneur | Building Autonomous Workforce

InnovexITBangladesh公式サイト ↗
言語C++DartCMakeHTMLCSwiftKotlinObjective-C

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 3 件
  • flutter{"sdk":"flutter"}
  • flutter_test開発用{"sdk":"flutter"}
  • flutter_lints開発用^1.0.0

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

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