Skip to content

Commit

Permalink
reset to master
Browse files Browse the repository at this point in the history
  • Loading branch information
Prayas-Agrawal committed Jan 28, 2024
1 parent 10b7524 commit aeffd79
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions lib/src/routes/buynsell_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -204,14 +204,6 @@ class _SellpageState extends State<Sellpage> {
stream: buynSellPostBloc.buynsellposts,
builder: (BuildContext context,
AsyncSnapshot<List<BuynSellPost>> snapshot) {
if (snapshot.connectionState ==
ConnectionState.waiting) {
return Center(
child: CircularProgressIndicatorExtended(
label: Text("Getting the latest posts"),
),
);
}
return ListView.builder(
primary: false,
shrinkWrap: true,
Expand Down
8 changes: 0 additions & 8 deletions lib/src/routes/lostandfoundfeedpage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,6 @@ class _LostpageState extends State<LostPage> {
stream: lnFPostBloc.lostAndFoundPosts,
builder: (BuildContext context,
AsyncSnapshot<List<LostAndFoundPost>> 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,
Expand Down

0 comments on commit aeffd79

Please sign in to comment.