Skip to content

Commit

Permalink
chore: v0.3.0 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Apr 5, 2021
1 parent 4b271be commit 4b2e8b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.3.0] - 04/05/21

- nnbd migration

## [0.2.1] - 02/19/21

- feat: add `padding` api to `InfiniteList`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import 'package:very_good_infinite_list/very_good_infinite_list.dart';
void main() => runApp(MyApp());
Future<List<String>> _itemLoader(int limit, {int start = 0}) {
Future<List<String>?> _itemLoader(int limit, {int start = 0}) {
return Future.delayed(
const Duration(seconds: 1),
() => List.generate(limit, (index) => 'Item ${start + index}'),
Expand Down

0 comments on commit 4b2e8b3

Please sign in to comment.