我有一个带有一些奇怪功能的 Flutter 应用程序,但它是必需的。该应用程序的 BottomNavigationBar 页面包含在 IndexedStack 中,因此如果您转到此 IndexedStack 的其他页面,页面不会重新加载并保持持久性。
class _MyHomePageState extends State<MyHomePage> {
//...
@override
Widget build(BuildContext context) {
return Scaffold(
body: IndexedStack(
index: selectedIndex,
children: bottomBarPages(),
),
bottomNavigationBar: BottomNavigationBar(
items: navItems,
currentIndex: selectedIndex,
onTap: _onNavItemTapped,
),
);
}
}
其中一个页面是 ProfilePage,您可以在其中选择用户列表。我使用如下所示的 ChangeNotifier:
class MainUserInfo extends ChangeNotifier {
List<UserInfo> _users;
UserInfo _chosenUser;
//... some get/set/etc methods here
}
其他 BottomNavigationBar 页面之一 TheOtherPage 取决于所选用户 (_chosenUser),在 initState 上它从网络加载数据:
class TheOtherPage extends StatefulWidget {
//...
bool isLoading = true;
@override
void initState() {
super.initState();
getAccountData();
}
void getAccountData() async {
//some fetch happening here
setState(() {
model = response.data;
isLoading = false;
});
}
}
问题是字段 _chosenUser 更改后,我需要 TheOtherPage 从网络加载所选用户的数据。但我不知道如何处理它。如果我使用 context.read 或 context.select 它肯定会跟踪更改的 _chosenUser,但不会获取新选择的数据:
var mainUserInfo = context.read<MainUserInfo>();
//or
var chosenUser = context.select<MainUserInfo, UserInfo>((userInfo) => userInfo.chosenUser);
而且我不想在 UserInfo 对象中保存 TheOtherPage 所需的数据,因为数据太多,并且为 MainUserInfo._users 中的每个用户加载这么多数据不是一种选择。此外,我将能够跟踪加载状态,因为使用“bool Isloading”我可以在获取所需数据时显示一些花哨的占位符。
所以一般的问题是如何使 TheOtherPage 获取 ProfilePage 上 ChangeNotifier 更改字段的数据。也许我的整个方法很糟糕,我不需要在这里使用 Provider 和 ChangeNotifier,我想看看任何建议。谢谢