我可以从 flutter SplashScreen 中移除加载轮吗

Can I remove the loading wheel from a flutter SplashScreen

我在我的应用程序上使用标准的 SplashScreen 对象,它有一个字段可以更改为加载轮的颜色,但是 none 可以删除加载器。我希望图像居中,下面没有任何东西。是否可以卸下加载轮?

 return new SplashScreen(
      seconds: 2,
      navigateAfterSeconds: new RootPage(auth: widget.auth),
      image: new Image.asset('assets/icon.png'),
      backgroundColor: Colors.black,
      photoSize: MediaQuery.of(context).size.width/2 - 100,),
    )

这是来自 flutter 库的实际对象。当您 运行 Splash

时,它有一个加载圈

我看到您正在使用 SplashScreen 包,我认为删除指示器没有任何价值,但您可以尝试使其颜色透明

return SplashScreen(
  seconds: 2,
  navigateAfterSeconds: new RootPage(auth: widget.auth),
  image: Image.asset('assets/icon.png'),
  backgroundColor: Colors.black,
  photoSize: MediaQuery.of(context).size.width/2 - 100,),
  loaderColor: Colors.transparent //this will make it invisible
)

这对我有用

    useLoader:false;