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