Change splash screen delay from 5 to 3 seconds

This commit is contained in:
Moe Poi ~ 2021-08-24 19:13:55 +07:00
parent 1fefd8399e
commit 462f69b0d0

View file

@ -19,7 +19,7 @@ class _SplashScreenState extends State<SplashScreen> {
}
loadSplash() async {
var duration = const Duration(seconds: 5);
var duration = const Duration(seconds: 3);
return Timer(duration, () {
Navigator.pushReplacement(context, PageTransition(
type: PageTransitionType.fade,