Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Nicolas Lopez
2020-08-29 09:10:37 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7e209fb725d2060d8b3c2be24ede79e9e34bc7db
7e209fb7
1 parent
445ba721
Simple bool notation
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
lib/src/navigation/extension_navigation.dart
lib/src/navigation/extension_navigation.dart
View file @
7e209fb
...
...
@@ -87,7 +87,7 @@ extension GetNavigation on GetInterface {
String
page
,
{
Object
arguments
,
int
id
,
preventDuplicates
=
true
,
bool
preventDuplicates
=
true
,
})
{
if
(
preventDuplicates
&&
page
==
currentRoute
)
{
return
null
;
...
...
@@ -113,7 +113,7 @@ extension GetNavigation on GetInterface {
String
page
,
{
Object
arguments
,
int
id
,
preventDuplicates
=
true
,
bool
preventDuplicates
=
true
,
})
{
if
(
preventDuplicates
&&
page
==
currentRoute
)
{
return
null
;
...
...
@@ -318,7 +318,7 @@ extension GetNavigation on GetInterface {
Object
arguments
,
Bindings
binding
,
bool
fullscreenDialog
=
false
,
preventDuplicates
=
true
,
bool
preventDuplicates
=
true
,
Duration
duration
,
})
{
String
routename
=
"/
${page.runtimeType.toString()}
"
;
...
...
Please
register
or
login
to post a comment