Skip to content

Commit

Permalink
chore(release): bump to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daadu committed May 12, 2022
1 parent ce6ef36 commit 87ae6cb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@
"profile": "https://github.com/mockturtl",
"contributions": [
"code",
"doc"
"doc",
"bug"
]
},
{
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
## [0.8.0] - 12 May 2022

- **FIX**: SchedulerBinding.instance is now null-safe ([#124](https://github.com/fluttercommunity/backdrop/pull/124)) ([#125](https://github.com/fluttercommunity/backdrop/pull/125))

## [0.7.2] - 3 May 2022

- **DOCS**: remove mention of deprecated member
- **REFACTOR**: making BackdropScaffoldState.scaffoldKey non-null with `late` ([#114](https://github.com/fluttercommunity/backdrop/pull/114))
- **FEAT**: added frontLayerShape in-place of frontLayerBorderRadius in `BackdropScaffold` ([#116](https://github.com/fluttercommunity/backdrop/pull/116))
- **perf**: only rebuild widgets when BackdropScaffoldState changed ([#119](https://github.com/fluttercommunity/backdrop/pull/119))
- **PERF**: only rebuild widgets when BackdropScaffoldState changed ([#119](https://github.com/fluttercommunity/backdrop/pull/119))

## [0.7.1] - 19 December 2021

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<tr>
<td align="center"><a href="https://github.com/kannel-outis"><img src="https://avatars0.githubusercontent.com/u/32224274?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Enikuomehin Adejuwon</b></sub></a><br /><a href="https://github.com/fluttercommunity/backdrop/commits?author=kannel-outis" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/farmery"><img src="https://avatars0.githubusercontent.com/u/56759256?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Nwachi ifeanyichukwu Victor</b></sub></a><br /><a href="https://github.com/fluttercommunity/backdrop/commits?author=farmery" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mockturtl"><img src="https://avatars0.githubusercontent.com/u/705804?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mockturtl</b></sub></a><br /><a href="https://github.com/fluttercommunity/backdrop/commits?author=mockturtl" title="Code">💻</a> <a href="https://github.com/fluttercommunity/backdrop/commits?author=mockturtl" title="Documentation">📖</a></td>
<td align="center"><a href="https://github.com/mockturtl"><img src="https://avatars0.githubusercontent.com/u/705804?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mockturtl</b></sub></a><br /><a href="https://github.com/fluttercommunity/backdrop/commits?author=mockturtl" title="Code">💻</a> <a href="https://github.com/fluttercommunity/backdrop/commits?author=mockturtl" title="Documentation">📖</a> <a href="https://github.com/fluttercommunity/backdrop/issues?q=author%3Amockturtl" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://github.com/rtr-dnd"><img src="https://avatars0.githubusercontent.com/u/19490811?v=4?s=100" width="100px;" alt=""/><br /><sub><b>ritar</b></sub></a><br /><a href="https://github.com/fluttercommunity/backdrop/issues?q=author%3Artr-dnd" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://github.com/LorenzoVianello"><img src="https://avatars0.githubusercontent.com/u/32164824?v=4?s=100" width="100px;" alt=""/><br /><sub><b>LorenzoVianello</b></sub></a><br /><a href="https://github.com/fluttercommunity/backdrop/issues?q=author%3ALorenzoVianello" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://github.com/ScottMacDougall"><img src="https://avatars0.githubusercontent.com/u/1026653?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Scott</b></sub></a><br /><a href="https://github.com/fluttercommunity/backdrop/commits?author=ScottMacDougall" title="Code">💻</a></td>
Expand Down
2 changes: 1 addition & 1 deletion lib/src/navigation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ class BackdropNavigationBackLayer extends StatelessWidget {
itemCount: items.length,
padding: itemPadding,
itemBuilder: (context, position) => InkWell(
child: items[position],
onTap: () {
// fling backdrop
Backdrop.of(context).fling();
Expand All @@ -90,6 +89,7 @@ class BackdropNavigationBackLayer extends StatelessWidget {
},
customBorder: itemSplashBorder,
splashColor: itemSplashColor,
child: items[position],
),
separatorBuilder: separatorBuilder ?? (builder, position) => Container(),
);
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: backdrop
description: Backdrop implementation in dart. (https://material.io/design/components/backdrop.html)
version: 0.7.2
version: 0.8.0
homepage: https://github.com/fluttercommunity/backdrop
documentation: https://github.com/fluttercommunity/backdrop
maintainer: Harsh Bhikadia (@daadu)
Expand All @@ -16,7 +16,7 @@ dependencies:
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^1.0.4
flutter_lints: ^2.0.0


# For information on the generic Dart part of this file, see the
Expand Down

0 comments on commit 87ae6cb

Please sign in to comment.