From aeffd7963eeceb3033f268b590a7fff4ed37114d Mon Sep 17 00:00:00 2001 From: Prayas-Agrawal Date: Sun, 28 Jan 2024 20:19:08 +0530 Subject: [PATCH] reset to master --- lib/src/routes/buynsell_page.dart | 8 -------- lib/src/routes/lostandfoundfeedpage.dart | 8 -------- 2 files changed, 16 deletions(-) diff --git a/lib/src/routes/buynsell_page.dart b/lib/src/routes/buynsell_page.dart index dd8cdf5d..687b28a3 100644 --- a/lib/src/routes/buynsell_page.dart +++ b/lib/src/routes/buynsell_page.dart @@ -204,14 +204,6 @@ class _SellpageState extends State { stream: buynSellPostBloc.buynsellposts, builder: (BuildContext context, AsyncSnapshot> snapshot) { - if (snapshot.connectionState == - ConnectionState.waiting) { - return Center( - child: CircularProgressIndicatorExtended( - label: Text("Getting the latest posts"), - ), - ); - } return ListView.builder( primary: false, shrinkWrap: true, diff --git a/lib/src/routes/lostandfoundfeedpage.dart b/lib/src/routes/lostandfoundfeedpage.dart index 7e85da18..96e31249 100644 --- a/lib/src/routes/lostandfoundfeedpage.dart +++ b/lib/src/routes/lostandfoundfeedpage.dart @@ -168,14 +168,6 @@ class _LostpageState extends State { stream: lnFPostBloc.lostAndFoundPosts, builder: (BuildContext context, AsyncSnapshot> snapshot) { - if (snapshot.connectionState == - ConnectionState.waiting) { - return Center( - child: CircularProgressIndicatorExtended( - label: Text("Getting the latest posts"), - ), - ); - } if (snapshot.data?.length != 0) { return ListView.builder( primary: false,