From 87ae6cb05169dfeb5793725ce0c0b322bfe78c0f Mon Sep 17 00:00:00 2001 From: Harsh Bhikadia Date: Thu, 12 May 2022 17:22:32 +0530 Subject: [PATCH] chore(release): bump to v0.8.0 --- .all-contributorsrc | 3 ++- CHANGELOG.md | 6 +++++- README.md | 2 +- lib/src/navigation.dart | 2 +- pubspec.yaml | 4 ++-- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index f62ca61..86b6c76 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -173,7 +173,8 @@ "profile": "https://github.com/mockturtl", "contributions": [ "code", - "doc" + "doc", + "bug" ] }, { diff --git a/CHANGELOG.md b/CHANGELOG.md index e11b907..1a2db85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index a3d97a0..c4a0ac3 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Enikuomehin Adejuwon

💻
Nwachi ifeanyichukwu Victor

💻 -
mockturtl

💻 📖 +
mockturtl

💻 📖 🐛
ritar

🐛
LorenzoVianello

🐛
Scott

💻 diff --git a/lib/src/navigation.dart b/lib/src/navigation.dart index bf6d8f5..ef0d866 100644 --- a/lib/src/navigation.dart +++ b/lib/src/navigation.dart @@ -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(); @@ -90,6 +89,7 @@ class BackdropNavigationBackLayer extends StatelessWidget { }, customBorder: itemSplashBorder, splashColor: itemSplashColor, + child: items[position], ), separatorBuilder: separatorBuilder ?? (builder, position) => Container(), ); diff --git a/pubspec.yaml b/pubspec.yaml index 07951dd..561a2a8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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) @@ -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