gpt4 book ai didi

Flutter:页面重建不合逻辑

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

我的 flutter 应用程序中有一个页面,该页面仅用于显示我的应用程序的 Logo ,然后转到另一个页面。出于某种原因,即使它被调用一次,我也无法弄清楚它会多次运行构建方法。
这是代码:

class LoadingPage extends StatelessWidget {
int i = 0;
@override
Widget build(BuildContext context) {
i++;
print(i);
test(context);
test2();
return Scaffold(
backgroundColor: Colors.lightBlue,
body: SafeArea(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Image.asset("assets/images/logo.png"),
SizedBox(
height: Responsive.deviceHeight(context) * 0.05,
),
LoadingRotating.square(
backgroundColor: Colors.lightBlue,
borderColor: Colors.white,
borderSize: 5.0,
),
],
),
),
);
}

void test(BuildContext context) {
Future.delayed(const Duration(seconds: 5), () {
print("H");
Navigator.of(context).pushAndRemoveUntil(
MaterialPageRoute(builder: (context) => ProductListPage()),
(Route<dynamic> route) => false,
);
});
}

void test2(){
print("H2");
}
}
我希望打印以下内容:
1
H2
H
但结果是:
I/flutter (20904): 1
I/flutter (20904): H2
I/flutter (20904): 1
I/flutter (20904): H2
I/flutter (20904): H
I/flutter (20904): H
有人可以解释这种行为吗?
谢谢

最佳答案

你应该对待build方法,好像它会被多次调用。不能保证它只会被调用一次。查看此答案以获取更多详细信息:How to deal with unwanted widget build?

关于Flutter:页面重建不合逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62851317/

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