FLUTTER ECOSYSTEM

delwar36/splash_route

這只是一條帶有華麗動畫的路由。用於在導航到另一頁面時顯示啟動畫面動畫。

啟動頁面路由 專案封面
Stars
1
Forks
0
最近推送(UTC)
2022年2月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,
      ),
    );
  }