v0.0.2splash_route
這只是一條帶有華麗動畫的路由。用於在導航到另一頁面時顯示啟動畫面動畫。
16喜歡 8近 30 天下載140Pub 分數
AndroidiOSWebmacOSWindowsLinux
這只是一條帶有華麗動畫的路由。用於在導航到另一頁面時顯示啟動畫面動畫。
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0以下為英文專案原文快照,最新內容請造訪 GitHub。
It is just a route with fancy animation. It is used to show the splash animation while navigating to another page.
Add splash_route: ^0.0.2 to your pubspec.yaml dependecies. And import it:
import 'package:splash_route/splash_route.dart';
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,
),
);
}