Skip to content

Instantly share code, notes, and snippets.

@ijoschek
Last active December 5, 2018 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijoschek/f97c85adf95a405ae1880c4d3d35aeea to your computer and use it in GitHub Desktop.
Save ijoschek/f97c85adf95a405ae1880c4d3d35aeea to your computer and use it in GitHub Desktop.
flutter_firestore_tut
//...
class _Home extends State<StatefulWidget> {
//...
@override
void initState() {
super.initState();
_transactionListener = Firestore.instance
.collection('stats')
.document('interactions')
.snapshots()
.listen((data) => transactionListenerUpdate(data));
}
void transactionListenerUpdate(data) {
var number = data['count'];
setState(() {
_interactionCount = number;
});
}
//...
@override
Widget build(BuildContext context) {
return Scaffold(
//...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment