Skip to content

Commit

Permalink
Merge pull request #32 from naoki0719:fix/spell-miss
Browse files Browse the repository at this point in the history
There was a spelling mistake, so I corrected
  • Loading branch information
naoki0719 authored Nov 16, 2021
2 parents 37281a4 + 09383ee commit 35acc04
Show file tree
Hide file tree
Showing 6 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,5 +1,9 @@
# Changelog

## [5.0.1] - 2021-11-16

- There was a spelling mistake, so I corrected it to "customizedButtonTap" (#31).

## [5.0.0] - 2021-11-05

- I put them together in a library to simplify importing.
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c

COCOAPODS: 1.10.1
COCOAPODS: 1.11.2
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ packages:
path: ".."
relative: true
source: path
version: "5.0.0"
version: "5.0.1"
intl:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/functions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Future<T>? screenLock<T>({
didError: didError,
didMaxRetries: didMaxRetries,
didConfirmed: didConfirmed,
custmizedButtonTap: customizedButtonTap,
customizedButtonTap: customizedButtonTap,
customizedButtonChild: customizedButtonChild,
footer: footer,
deleteButton: deleteButton,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/screen_lock.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class _ScreenLockState extends State<ScreenLock> {
inputButtonConfig: widget.inputButtonConfig,
inputState: inputController,
canCancel: widget.canCancel,
customizedButtonTap: widget.custmizedButtonTap,
customizedButtonTap: widget.customizedButtonTap,
customizedButtonChild: widget.customizedButtonChild,
deleteButton: widget.deleteButton,
cancelButton: widget.cancelButton,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_screen_lock
description: Provides the ability to lock the screen on ios and android. Biometric authentication can be used in addition to passcode.
homepage: https://github.com/naoki0719/flutter_screen_lock
version: 5.0.0
version: 5.0.1

environment:
sdk: ">=2.12.0-0 <3.0.0"
Expand Down

0 comments on commit 35acc04

Please sign in to comment.