Skip to content

Commit

Permalink
* Fixed ShimmerConfig initialization error
Browse files Browse the repository at this point in the history
* Updated version
  • Loading branch information
rithik-dev committed Jun 7, 2022
1 parent cc59324 commit 464499d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.2.3] - 07/06/2022

* Fixed ShimmerConfig initialization error

## [1.2.2] - 07/06/2022

* Fixed linter warnings
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.2.2"
version: "1.2.3"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/config/paginated_items_builder_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class PaginatedItemsBuilderConfig {
this.customScrollPhysics = ConfigDefaults.customScrollPhysics,
this.padding = ConfigDefaults.padding,
}) {
shimmerConfig = shimmerConfig ?? ShimmerConfig();
this.shimmerConfig = shimmerConfig ?? ShimmerConfig();
}

/// Create a function and pass the reference to this.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: paginated_items_builder
description: Easier to display items in a list/grid view from your controllers directly or handling state internally with support for pagination.
version: 1.2.2
version: 1.2.3
homepage: https://github.com/rithik-dev/paginated_items_builder

environment:
Expand Down

0 comments on commit 464499d

Please sign in to comment.