Skip to content

Commit 9dbe02e

Browse files
committed
fixed: improvement null safety support
1 parent f80de8f commit 9dbe02e

File tree

11 files changed

+9
-5
lines changed

11 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.0+1] - 2021-03-17.
2+
3+
* [Fixed] - Improvement null safety support.
4+
15
## [1.0.0] - 2021-03-17.
26

37
* [Updated] - Migrate to stable null safety.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# flutter_inner_drawer
2-
[![pub package](https://img.shields.io/badge/pub-1.0.0-orange.svg)](https://pub.dartlang.org/packages/flutter_inner_drawer)
2+
[![pub package](https://img.shields.io/badge/pub-1.0.0+1-orange.svg)](https://pub.dartlang.org/packages/flutter_inner_drawer)
33
[![Awesome Flutter](https://img.shields.io/badge/Awesome-Flutter-blue.svg?longCache=true&style=flat-square)](https://github.com/Solido/awesome-flutter#drawers)
44
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/dnag88)
55

@@ -10,7 +10,7 @@ Inner Drawer is an easy way to create an internal side section (left/right) wher
1010
Add this to your package's pubspec.yaml file:
1111
```dart
1212
dependencies:
13-
flutter_inner_drawer: "^1.0.0"
13+
flutter_inner_drawer: "^1.0.0+1"
1414
```
1515
## Demo
1616
<div align="center">
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

example/android/local.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sdk.dir=C:\\Users\\NINU0\\AppData\\Local\\Android\\Sdk
22
flutter.sdk=C:\\flutter
3-
flutter.buildMode=debug
3+
flutter.buildMode=release
44
flutter.versionName=1.0.0
55
flutter.versionCode=1

lib/inner_drawer.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ class InnerDrawerState extends State<InnerDrawer>
489489
excludeFromSemantics: defaultTargetPlatform == TargetPlatform.android,
490490
onTap: widget.onTapClose || !_swipe ? close : null,
491491
child: Semantics(
492-
label: MaterialLocalizations.of(context)?.modalBarrierDismissLabel,
492+
label: MaterialLocalizations.of(context).modalBarrierDismissLabel,
493493
child: container,
494494
),
495495
),

0 commit comments

Comments
 (0)