diff --git a/lib/home_page.dart b/lib/home_page.dart index b143b67..7e5842b 100644 --- a/lib/home_page.dart +++ b/lib/home_page.dart @@ -191,6 +191,9 @@ class _MyHomePageState extends State with RouteAware { child: FutureBuilder( future: sheets, builder: (BuildContext context, AsyncSnapshot> snapshot) { + if (snapshot.connectionState != ConnectionState.done) { + return const Center(child: CircularProgressIndicator()); + } if (snapshot.hasData) { return SheetsWidget( sheets: snapshot.data!,