Reputation: 1671
I'm unsure of how to implement a FutureBuilder
element alongside other non-asynchronous elements in my build tree. The fact that I'm using a Consumer
which listens for changes within a ChangeNotifierprovider
complicates things somewhat. Can I use both the provider and the FutureBuilder? In the following code, the relevant future I need to access is the socialProvider.currentavatar
and socialProvider.currentname
within the bottom navigation bar.
Widget build(BuildContext context) {
var socialProvider = Provider.of<SocialProvider>(context);
return new MaterialApp(
home: new Scaffold(
body: _myPages[_selectedIndex],
bottomNavigationBar: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
title: Text('Home'),
),
BottomNavigationBarItem(
icon: Consumer<SocialProvider>(
builder: (context, socialProvider, child) {
return Image.network(socialProvider.currentavatar);
}),
title: Consumer<SocialProvider>(
builder: (context, socialProvider, child) {
return Text(socialProvider.currentname);
}),
),
],
currentIndex: _selectedIndex,
onTap: _onItemTapped,
),
),
);
}
And here's the code within my SocialProvider with ChangeNotifier
class.
class SocialProvider with ChangeNotifier {
String currentname = loadCurrentName();
String currentavatar = loadCurrentAvatar();
loadCurrentName() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
String currentname = await prefs.getString('currentname') ?? 'Anonymous';
return currentname;
}
loadCurrentAvatar() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
String currentavatar = await prefs.getString('currentavatar') ?? "https://example.com/default.png";
return currentavatar;
}
}
How can I implement the FutureBuilder so that I can grab the socialProvider.currentname and socialProvider.currentavatar?
Upvotes: 1
Views: 561
Reputation: 842
Wrap your scaffold in FutureBuilder. You can use Future.wait
to run 2 futures in FutureBuilder. Since you are not getting the data from Snapshot, you can get rid of those consumers unless you are planning to update those fields.
Widget build(BuildContext context) {
var socialProvider = Provider.of<SocialProvider>(context);
return new MaterialApp(
home: FutureBuilder(
future: Future.wait([socialProvider.loadCurrentName(), socialProvider.loadCurrentAvatar()]),
builder: (context, snapshot) {
if (snapshot.hasData) {
return Scaffold(
body: _myPages[_selectedIndex],
bottomNavigationBar: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
title: Text('Home'),
),
BottomNavigationBarItem(
icon: Consumer<SocialProvider>(
builder: (context, socialProvider, child) {
return Image.network(snapshot.data[1]);
}),
title: Consumer<SocialProvider>(
builder: (context, socialProvider, child) {
return Text(snapshot.data[0]);
}),
),
],
currentIndex: _selectedIndex,
onTap: _onItemTapped,
),
);
} else if(snapshot.hasError) {
// handle error.
} else{
// handle loading.
}
}
),
);
}
class SocialProvider with ChangeNotifier {
String currentname = loadCurrentName();
String currentavatar = loadCurrentAvatar();
Future<String> loadCurrentName() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
String currentname = await prefs.getString('currentname') ?? 'Anonymous';
return currentname;
}
Future<String> loadCurrentAvatar() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
String currentavatar = await prefs.getString('currentavatar') ?? "https://example.com/default.png";
return currentavatar;
}
}
Upvotes: 1