Skip to content

Commit

Permalink
fixed: improvement null safety support
Browse files Browse the repository at this point in the history
  • Loading branch information
Dn-a committed Mar 17, 2021
1 parent f80de8f commit 9dbe02e
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.0+1] - 2021-03-17.

* [Fixed] - Improvement null safety support.

## [1.0.0] - 2021-03-17.

* [Updated] - Migrate to stable null safety.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flutter_inner_drawer
[![pub package](https://img.shields.io/badge/pub-1.0.0-orange.svg)](https://pub.dartlang.org/packages/flutter_inner_drawer)
[![pub package](https://img.shields.io/badge/pub-1.0.0+1-orange.svg)](https://pub.dartlang.org/packages/flutter_inner_drawer)
[![Awesome Flutter](https://img.shields.io/badge/Awesome-Flutter-blue.svg?longCache=true&style=flat-square)](https://github.com/Solido/awesome-flutter#drawers)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/dnag88)

Expand All @@ -10,7 +10,7 @@ Inner Drawer is an easy way to create an internal side section (left/right) wher
Add this to your package's pubspec.yaml file:
```dart
dependencies:
flutter_inner_drawer: "^1.0.0"
flutter_inner_drawer: "^1.0.0+1"
```
## Demo
<div align="center">
Expand Down
Binary file not shown.
Binary file modified example/android/.gradle/5.6.2/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified example/android/.gradle/5.6.2/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified example/android/.gradle/5.6.2/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file modified example/android/.gradle/5.6.2/javaCompile/taskHistory.bin
Binary file not shown.
Binary file modified example/android/.gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion example/android/local.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sdk.dir=C:\\Users\\NINU0\\AppData\\Local\\Android\\Sdk
flutter.sdk=C:\\flutter
flutter.buildMode=debug
flutter.buildMode=release
flutter.versionName=1.0.0
flutter.versionCode=1
2 changes: 1 addition & 1 deletion lib/inner_drawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ class InnerDrawerState extends State<InnerDrawer>
excludeFromSemantics: defaultTargetPlatform == TargetPlatform.android,
onTap: widget.onTapClose || !_swipe ? close : null,
child: Semantics(
label: MaterialLocalizations.of(context)?.modalBarrierDismissLabel,
label: MaterialLocalizations.of(context).modalBarrierDismissLabel,
child: container,
),
),
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: flutter_inner_drawer
description: Inner Drawer is an easy way to create an internal side section (left/right) where you can insert a list menu or other.
version: 1.0.0
version: 1.0.0+1
author: Antonino Di Natale <[email protected]>
homepage: https://github.com/Dn-a/flutter_inner_drawer

Expand Down

0 comments on commit 9dbe02e

Please sign in to comment.