Flutter hold splash screen for 3 Seconds. How to implement splash screen in Flutter?

前端 未结 9 2021
后悔当初
后悔当初 2021-02-16 00:16

How to show splash screen in flutter for 3 seconds and then go next my login screen.

I have tried.countdowntimer but import is unresolved

import \'pack         


        
9条回答
  •  星月不相逢
    2021-02-16 00:26

    You can use Future.delayed constructor in your initState. This will keep your SplashScreen for the duration you specify before the navigation happen.

    class SplashScreen extends StatefulWidget {
      @override
      _SplashScreenState createState() => new _SplashScreenState();
    }
    
    class _SplashScreenState extends State {
      @override
      void initState (){
        super.initState();
        // TODO initial state stuff
        new Future.delayed(const Duration(seconds: 4));
      }
      @override
      Widget build(BuildContext context) {
        //build
      }
    }
    

    I only copied the answers from:this

提交回复
热议问题