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
Gairick Saha
2021-09-07 03:07:42 +0530
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2021-09-07 03:07:42 +0530
Commit
a4930d4306d6095bdabe7ba6c82985bf775098a1
a4930d43
1 parent
8a8c6424
Printing GetInformationParser as GetLog
Replace print() method with Get.log()
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/get_navigation/src/nav2/get_information_parser.dart
lib/get_navigation/src/nav2/get_information_parser.dart
View file @
a4930d4
...
...
@@ -14,7 +14,7 @@ class GetInformationParser extends RouteInformationParser<GetNavConfig> {
SynchronousFuture
<
GetNavConfig
>
parseRouteInformation
(
RouteInformation
routeInformation
,
)
{
print
(
'GetInformationParser: route location:
${routeInformation.location}
'
);
Get
.
log
(
'GetInformationParser: route location:
${routeInformation.location}
'
);
var
location
=
routeInformation
.
location
;
if
(
location
==
'/'
)
{
//check if there is a corresponding page
...
...
Please
register
or
login
to post a comment