From 10fa22edb45ad3fd7347c1bb42a0a13c813a88e0 Mon Sep 17 00:00:00 2001 From: Dimitrios Begnis Date: Sun, 6 Sep 2020 10:48:50 +0200 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 31 ++++++++++++++++++------------- README.md | 3 ++- example/pubspec.lock | 2 +- pubspec.yaml | 2 +- 4 files changed, 22 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b278e9..f251f90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 \ No newline at end of file +* Initial release \ No newline at end of file diff --git a/README.md b/README.md index 5807bbe..5a26532 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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 | diff --git a/example/pubspec.lock b/example/pubspec.lock index cfe43dc..4eced64 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -120,7 +120,7 @@ packages: path: ".." relative: true source: path - version: "1.0.0" + version: "1.1.0" stream_channel: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index aa257ae..d84a50a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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