Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Dimibe/grouped_list
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: felixgabler/grouped_list
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 3 commits
  • 6 files changed
  • 1 contributor

Commits on Nov 20, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    34a9af8 View commit details
  2. Fix github action

    Dimibe committed Nov 20, 2020
    Copy the full SHA
    05773a2 View commit details
  3. Release 3.7.1

    Dimibe committed Nov 20, 2020
    Copy the full SHA
    fd2c620 View commit details
Showing with 13 additions and 5 deletions.
  1. +3 −1 .github/workflows/main.yml
  2. +4 −0 CHANGELOG.md
  3. +1 −1 README.md
  4. +1 −1 example/pubspec.lock
  5. +3 −1 lib/grouped_list.dart
  6. +1 −1 pubspec.yaml
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,9 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1.3.0
- uses: subosito/flutter-action@v1.4.0
with:
channel: stable
- name: Install Dependencies
run: flutter packages get
- name: Format
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [3.7.1] - 20.11.2020

* Bug fixes: Fix bug where removeListener was called on null [Issue #64](https://github.com/Dimibe/grouped_list/issues/64)

## [3.7.0] - 15.11.2020

* New feature: Add new options from ListView.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ A flutter `ListView` in which list items can be grouped to sections.
Add the package to your pubspec.yaml:

```yaml
grouped_list: ^3.7.0
grouped_list: ^3.7.1
```
In your dart file, import the library:
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.7.0"
version: "3.7.1"
intl:
dependency: "direct main"
description:
4 changes: 3 additions & 1 deletion lib/grouped_list.dart
Original file line number Diff line number Diff line change
@@ -243,7 +243,9 @@ class _GroupedListViewState<T, E> extends State<GroupedListView<T, E>> {

@override
void dispose() {
_controller.removeListener(_scrollListener);
if (widget.useStickyGroupSeparators) {
_controller.removeListener(_scrollListener);
}
if (widget.controller == null) {
_controller.dispose();
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: grouped_list
description: A Flutter ListView where the list items can be grouped into sections.
version: 3.7.0
version: 3.7.1
homepage: https://begnis.dev
repository: https://github.com/Dimibe/grouped_list