Skip to content

Commit

Permalink
Bump version to 1.0.8. Update readme, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Limbou committed Sep 19, 2021
1 parent dab7048 commit 18193c9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.8

* Added `scrollDirection` property
* Added `scrollBehavior` property

## 1.0.7

* Added `alignment` property
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# expandable_page_view

A PageView widget adjusting it's height to currently displayed page. It accepts the same parameters as classic PageView.
A PageView widget adjusting its height to currently displayed page. It accepts the same parameters as classic PageView.

![Expandable Page View](https://media.giphy.com/media/21kOnh5gH0XcjBdcSx/giphy.gif)

Expand All @@ -11,7 +11,7 @@ In the `pubspec.yaml` of your flutter project, add the following dependency:
```yaml
dependencies:
...
expandable_page_view: ^1.0.7
expandable_page_view: ^1.0.8
```
Import it:
Expand All @@ -38,7 +38,7 @@ ExpandablePageView(

### Dynamically built Expandable Page View

If You have multiple pages to display and You want to build them dynamically while scrolling, use `.builder` constructor and pass `itemCount` and `itemBuilder` parameters:
If You have multiple pages to display, and You want to build them dynamically while scrolling, use `.builder` constructor and pass `itemCount` and `itemBuilder` parameters:

```dart
ExpandablePageView.builder(
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: expandable_page_view
description: A PageView widget adjusting it's height to currently displayed page
version: 1.0.7
version: 1.0.8
homepage: https://github.com/Limbou/expandable_page_view

environment:
Expand Down

0 comments on commit 18193c9

Please sign in to comment.