Skip to content

Commit

Permalink
Update README.md and bump to 0.3.0+1
Browse files Browse the repository at this point in the history
  • Loading branch information
slightfoot committed May 15, 2022
1 parent 3a1ae01 commit a43d5b7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## 0.3.0+1
* Update README.md

## 0.3.0
* Updated to Flutter v3.0.0
* Fixed pixel rounding issue for non-integer divisible devicePixelRatios.
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ inside any scrollable content, such as: `ListView`, `GridView`, `CustomScrollVi
Depend on it:
```yaml
dependencies:
sticky_headers: "^0.1.8"
sticky_headers: "^0.3.0"
```
Import it:
Expand All @@ -41,8 +41,12 @@ class Example extends StatelessWidget {
),
),
content: Container(
child: Image.network(imageForIndex(index), fit: BoxFit.cover,
width: double.infinity, height: 200.0),
child: Image.network(
imageForIndex(index),
fit: BoxFit.cover,
width: double.infinity,
height: 200.0,
),
),
);
});
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_headers
description: Flutter Sticky Headers - Lets you place headers on scrollable content that will stick to the top of the container whilst the content is scrolled.
version: 0.3.0
version: 0.3.0+1
homepage: https://github.com/fluttercommunity/flutter_sticky_headers
maintainer: Simon Lightfoot (@slightfoot)

Expand Down

0 comments on commit a43d5b7

Please sign in to comment.