From d908a5b6d5022068a6f0005ebddd2fe0aa9be008 Mon Sep 17 00:00:00 2001 From: Vishnu Mohandas Date: Mon, 30 Nov 2020 14:27:11 +0530 Subject: [PATCH] Call super when necessary --- lib/ui/shared_collections_gallery.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ui/shared_collections_gallery.dart b/lib/ui/shared_collections_gallery.dart index 5ea8736b5..030df6d67 100644 --- a/lib/ui/shared_collections_gallery.dart +++ b/lib/ui/shared_collections_gallery.dart @@ -40,6 +40,7 @@ class _SharedCollectionGalleryState extends State @override Widget build(BuildContext context) { + super.build(context); return FutureBuilder( future: CollectionsDB.instance.getAllCollections().then((collections) async {