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
Ty
2023-12-14 09:45:59 -0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a0c6631618c430e2b82fb3d278c9fd9eb174ece1
a0c66316
1 parent
499b4a2b
switch to package:web to support wasm compilation
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
lib/get_navigation/src/routes/get_router_delegate.dart
lib/get_navigation/src/routes/page_settings.dart
lib/get_utils/src/platform/platform_web.dart
pubspec.yaml
lib/get_navigation/src/routes/get_router_delegate.dart
View file @
a0c6631
...
...
@@ -612,9 +612,12 @@ class GetDelegate extends RouterDelegate<RouteDecoder>
})
async
{
// remove history or page entries until you meet route
var
iterator
=
currentConfiguration
;
while
(
_canPop
(
popMode
)
&&
iterator
!=
null
&&
iterator
.
pageSettings
?.
name
!=
fullRoute
)
{
while
(
_canPop
(
popMode
)
&&
iterator
!=
null
)
{
//the next line causes wasm compile error if included in the while loop
//https://github.com/flutter/flutter/issues/140110
if
(
iterator
.
pageSettings
?.
name
==
fullRoute
)
{
break
;
}
await
_pop
(
popMode
,
null
);
// replace iterator
iterator
=
currentConfiguration
;
...
...
lib/get_navigation/src/routes/page_settings.dart
View file @
a0c6631
...
...
@@ -40,7 +40,7 @@ extension PageArgExt on BuildContext {
String
get
location
{
final
parser
=
router
.
routeInformationParser
;
final
config
=
delegate
.
currentConfiguration
;
return
parser
?.
restoreRouteInformation
(
config
)?.
location
??
'/'
;
return
parser
?.
restoreRouteInformation
(
config
)?.
uri
.
toString
()
??
'/'
;
}
GetDelegate
get
delegate
{
...
...
lib/get_utils/src/platform/platform_web.dart
View file @
a0c6631
// ignore: avoid_web_libraries_in_flutter
import
'
dart:html
'
as
html
;
import
'
package:web/web.dart
'
as
html
;
import
'../../get_utils.dart'
;
...
...
@@ -25,7 +25,7 @@ class GeneralPlatform {
static
bool
get
isIOS
{
// maxTouchPoints is needed to separate iPad iOS13 vs new MacOS
return
GetUtils
.
hasMatch
(
_navigator
.
platform
,
r'/iPad|iPhone|iPod/'
)
||
(
_navigator
.
platform
==
'MacIntel'
&&
_navigator
.
maxTouchPoints
!
>
1
);
(
_navigator
.
platform
==
'MacIntel'
&&
_navigator
.
maxTouchPoints
>
1
);
}
static
bool
get
isFuchsia
=>
false
;
...
...
pubspec.yaml
View file @
a0c6631
...
...
@@ -11,6 +11,7 @@ dependencies:
sdk
:
flutter
flutter_web_plugins
:
sdk
:
flutter
web
:
any
dev_dependencies
:
flutter_lints
:
^2.0.3
...
...
Please
register
or
login
to post a comment