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
Michel David
2024-03-29 10:15:50 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cd0271fccd55505bd8c7c038dfebc54bba25c569
cd0271fc
1 parent
2d54f9a4
fix: parse route in order to make Getx compatible with http app links
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
lib/get_navigation/src/routes/parse_route.dart
lib/get_navigation/src/routes/parse_route.dart
View file @
cd0271f
...
...
@@ -267,17 +267,17 @@ class ParseRouteTree {
Map
<
String
,
String
>
_parseParams
(
String
path
,
PathDecoded
routePath
)
{
final
params
=
<
String
,
String
>{};
var
idx
=
path
.
indexOf
(
'?'
);
final
uri
=
Uri
.
tryParse
(
path
);
if
(
uri
==
null
)
return
params
;
if
(
idx
>
-
1
)
{
path
=
path
.
substring
(
0
,
idx
);
final
uri
=
Uri
.
tryParse
(
path
);
if
(
uri
!=
null
)
{
params
.
addAll
(
uri
.
queryParameters
);
}
params
.
addAll
(
uri
.
queryParameters
);
}
var
paramsMatch
=
routePath
.
regex
.
firstMatch
(
uri
.
path
);
if
(
paramsMatch
==
null
)
{
return
params
;
}
var
paramsMatch
=
routePath
.
regex
.
firstMatch
(
path
);
for
(
var
i
=
0
;
i
<
routePath
.
keys
.
length
;
i
++)
{
var
param
=
Uri
.
decodeQueryComponent
(
paramsMatch
!
[
i
+
1
]!);
var
param
=
Uri
.
decodeQueryComponent
(
paramsMatch
[
i
+
1
]!);
params
[
routePath
.
keys
[
i
]!]
=
param
;
}
return
params
;
...
...
Please
register
or
login
to post a comment