gpt4 book ai didi

flutter - 我可以用 Provider 包装 MaterialApp 小部件吗?

转载 作者:行者123 更新时间:2023-12-03 02:41:43 24 4
gpt4 key购买 nike

我是 flutter 的新手,我正在尝试使用提供程序创建一个应用程序。我用 ChangeNotifierProvider 包装了 MaterialApp 小部件,应用程序可以正常工作,我可以按预期使用提供程序。我需要知道这样做是否可以,我会遇到任何问题吗?

Widget build(BuildContext context) {
return ChangeNotifierProvider<BaseModel>(
builder: (context) =>
BaseModel(loading: false, title: "Title", isLoggedIn: false),
child: MaterialApp(
routes: <String, WidgetBuilder>{
"/home": (BuildContext context) => Home(),
"/signIn": (BuildContext context) => SignIn()
},
initialRoute: "/signIn",
title: 'Flutter Demo',
theme: ThemeData(
// is not restarted.
primarySwatch: Colors.blue,
),
home: SignIn()),
);

在所有示例代码中,他们在 MaterialApp 小部件的“home”下使用 Provider。我在提供程序中使用了 MaterialApp。

最佳答案

完全没问题。没有任何问题。

关于flutter - 我可以用 Provider 包装 MaterialApp 小部件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57691515/

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