v0.0.2splash_route
यह केवल एक मनोरंजक एनीमेशन वाला रूट है। दूसरे पेज पर नेविगेट करते समय स्प्लैश एनीमेशन दिखाने के लिए उपयोग किया जाता है।
16लाइक 830-दिन डाउनलोड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,
),
);
}