Skip to content

Commit

Permalink
fix: pop method.
Browse files Browse the repository at this point in the history
  • Loading branch information
gurleensethi committed Apr 10, 2020
1 parent 1a05f87 commit 21f2086
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/sailor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ class Sailor {

/// Delegation for [Navigator.pop].
void pop([dynamic result]) {
return this.navigatorKey.currentState.pop(result);
this.navigatorKey.currentState.pop(result);
}

/// Delegation for [Navigator.popUntil].
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: sailor
description: Easily manage page navigation/routing in Flutter apps. Add page transition animations, log navigation events.
version: 0.7.0
version: 0.7.1
author: Gurleen Sethi <[email protected]>
homepage: https://www.github.com/gurleensethi/sailor

Expand Down

0 comments on commit 21f2086

Please sign in to comment.