Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimibe committed Sep 6, 2020
1 parent 896799b commit 10fa22e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 16 deletions.
31 changes: 18 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
## [0.1.0] - 23.06.2020

* Initial release
## [1.1.0] - 06.09.2020

## [0.1.1] - 24.06.2020
* New feature: The background color of the sticky header is now customizable (only if floatingHeaders option is not used).

* Add example

## [0.1.2] - 26.06.2020
## [1.0.0] - 05.09.2020

* Refactor example
* New feature: Reverse list - easy chat dialog creation

## [0.2.0] - 30.06.2020
## [0.3.0] - 25.07.2020

* scrollTo/jumpTo will set the element under the group header
* Fix performance issue: Don't rebuild widget when sticky header changes.

## [0.2.1] - 04.07.2020

* Add code documentation
* improved README

## [0.3.0] - 25.07.2020
## [0.2.0] - 30.06.2020

* Fix performance issue: Don't rebuild widget when sticky header changes.
* scrollTo/jumpTo will set the element under the group header

## [1.0.0] - 05.09.2020
## [0.1.2] - 26.06.2020

* Refactor example

## [0.1.1] - 24.06.2020

* Add example

## [0.1.0] - 23.06.2020

* New feature: Reverse list - easy chat dialog creation
* Initial release
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The list will be scrolled to the end in the initial state and therefore scrollin
Add the package to your pubspec.yaml:

```yaml
sticky_grouped_list: ^1.0.0
sticky_grouped_list: ^1.1.0
```
In your dart file, import the library:
Expand Down Expand Up @@ -59,6 +59,7 @@ import 'package:sticky_grouped_list/sticky_grouped_list.dart';
|`groupSeparatorBuilder`| Function which gets a element and returns an Widget which defines the group header separator | required | - |
|`separator` | A Widget which defines a separator between items inside a group | no | no separator |
| `floatingHeader` | When set to `true` the sticky header will float over the list | no | `false` |
| `stickyHeaderBackgroundColor` | Defines the background color of the sticky header | no | `Color(0xffF7F7F7)` |
| `order` | Change to `StickyGroupedListOrder.DESC` to reverse the group sorting | no | `StickyGroupedListOrder.ASC` |
|`itemScrollController`| Instead of an `ItemScrollController` a `GroupedItemScrollController` needs to be provided. | no | - |
|`reverse`| Scrolls in opposite from reading direction (Starting at bottom and scrolling up). Same as in scrollable_positioned_list. | no | false |
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.1.0"
stream_channel:
dependency: transitive
description:
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: sticky_grouped_list
description: A ScrollablePositionedList where the list items can be grouped into sections.
version: 1.0.0
version: 1.1.0
homepage: https://begnis.dev
repository: https://github.com/Dimibe/sticky_grouped_list

Expand Down

0 comments on commit 10fa22e

Please sign in to comment.