Flutter初始屏幕包不会在后台加载页面

时间:2019-08-17 16:51:22

标签: flutter dart

我有一个来自初始屏幕1.2.0的初始屏幕

它“有效”,但是在8秒钟后完成。然后,它开始加载页面。示例:然后运行checkIfUserIsLogged函数,然后streambuilder开始加载图像等。

splashScreen运行8秒时是否可以执行此操作?

(也许因为屏幕:loginScreen在另一个dart文件中而无法使用?)

谢谢!

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: SplashScreen(
          seconds: 8,
          navigateAfterSeconds: new loginScreen(),
          title: new Text('Welcome In SplashScreen'),
          image: new Image.asset('screenshot.png'),
          backgroundColor: Colors.white,
          styleTextUnderTheLoader: new TextStyle(),
          photoSize: 100.0,
          loaderColor: Colors.red),
    );
  }
}

0 个答案:

没有答案