gpt4 book ai didi

flutter - 我可以从 flutter 的SplashScreen上卸下装载轮吗

转载 作者:行者123 更新时间:2023-12-03 04:20:53 25 4
gpt4 key购买 nike

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

 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软件包,我认为删除该指示器没有值(value),但是您可以尝试使其颜色透明

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
)

关于flutter - 我可以从 flutter 的SplashScreen上卸下装载轮吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62665707/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com