Skip to content

Commit

Permalink
fix: fix broken example on grid
Browse files Browse the repository at this point in the history
  • Loading branch information
edson-mgm committed Aug 17, 2023
1 parent 818dee7 commit 8f5dc07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/lib/samples/beer_masonry_grid.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class BeerMasonryGrid extends StatefulWidget {
class _BeerMasonryGridState extends State<BeerMasonryGrid> {
final BeerListingBloc _bloc = BeerListingBloc();
final PagingController<int, BeerSummary> _pagingController =
PagingController(firstPageKey: 0);
PagingController(firstPageKey: 1);
late StreamSubscription _blocListingStateSubscription;

@override
Expand Down
2 changes: 1 addition & 1 deletion example/lib/samples/beer_sliver_grid.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class BeerSliverGrid extends StatefulWidget {
class _BeerSliverGridState extends State<BeerSliverGrid> {
final BeerListingBloc _bloc = BeerListingBloc();
final PagingController<int, BeerSummary> _pagingController =
PagingController(firstPageKey: 0);
PagingController(firstPageKey: 1);
late StreamSubscription _blocListingStateSubscription;

@override
Expand Down

0 comments on commit 8f5dc07

Please sign in to comment.