我是新手,我正在尝试使用提供程序创建一个应用程序。我用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小部件的“主页”下使用Provider。我在提供程序内部使用了MaterialApp。
答案 0 :(得分:2)
完全没问题。没问题。