Skip to content

Commit

Permalink
Release 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimibe committed Jul 22, 2021
1 parent b3d435f commit 2cac4a2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## [4.0.0] - 27.03.2020
## [4.1.0] - 22.07.2021

* New feature: Silver support [Pull Request #112](https://github.com/Dimibe/grouped_list/pull/112)
* Bugfixes: Fix bug where a out of range error could appear [Pull Request #110](https://github.com/Dimibe/grouped_list/pull/110)

## [4.0.0] - 27.03.2021

* Null safety

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Dimitrios Begnis
Copyright (c) 2021 Dimitrios Begnis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A flutter `ListView` in which list items can be grouped to sections.
<img src="https://raw.githubusercontent.com/Dimibe/grouped_list/master/assets/chat_example.png" width="300"><img src="https://raw.githubusercontent.com/Dimibe/grouped_list/master/assets/example.png" width="300">

#### Features
* Prerelease version with null safety support!
* Sound null safety support!
* Easy creation of chat dialog.
* List Items can be separated in groups.
* For the groups an individual header can be set.
Expand All @@ -20,7 +20,7 @@ A flutter `ListView` in which list items can be grouped to sections.
Add the package to your pubspec.yaml:

```yaml
grouped_list: ^4.0.0
grouped_list: ^4.1.0
```
In your dart file, import the library:
Expand Down Expand Up @@ -61,14 +61,20 @@ import 'package:grouped_list/grouped_list.dart';

**Also the fields from `ListView.builder` can be used.**


#### Highlight - SilverGroupedList

Now supporting a grouped list based on a silver list. Just use `SilverGroupedListView` instead of `GroupedListView`. An example can be found under `example/lib/example_silver`.
Note that some options of the `GroupedListView` are currently not available in `SilverGroupedListView`.


#### Highlight - Chat Dialog

Easy creation of chat dialogs.
Just set the option `reverse` to `true` and `order` to `GroupedListOrder.DESC`. A full example can be found in the examples.
The list will be scrolled to the end in the initial state and therefore scrolling will be against redeaing direction.



### My other packages :

**For easy creation of chat-like dialogs:**
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ packages:
path: ".."
relative: true
source: path
version: "4.0.0"
version: "4.1.0"
intl:
dependency: "direct main"
description:
Expand Down Expand Up @@ -101,7 +101,7 @@ packages:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.11.0"
version: "1.11.1"
sky_engine:
dependency: transitive
description: flutter
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: grouped_list
description: A Flutter ListView where the list items can be grouped into sections.
version: 4.0.0
version: 4.1.0
homepage: https://begnis.dev
repository: https://github.com/Dimibe/grouped_list

Expand Down

0 comments on commit 2cac4a2

Please sign in to comment.