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
Aniket Khote
2024-05-15 23:15:35 +0530
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2c44623ad48ba0926dcab3c6488d2020a7c046ee
2c44623a
1 parent
6da6d505
upgraded flutter to 3.22.0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
12 deletions
lib/get_connect/connect.dart
lib/get_navigation/src/dialog/dialog_route.dart
pubspec.yaml
test/rx/rx_workers_test.dart
lib/get_connect/connect.dart
View file @
2c44623
...
...
@@ -316,17 +316,20 @@ class GetConnect extends GetConnectInterface {
return
GraphQLResponse
<
T
>(
graphQLErrors:
listError
.
map
((
e
)
=>
GraphQLError
(
code:
(
e
[
'extensions'
]
!=
null
?
e
[
'extensions'
][
'code'
]
??
''
:
''
).
toString
(),
code:
(
e
[
'extensions'
]
!=
null
?
e
[
'extensions'
][
'code'
]
??
''
:
''
)
.
toString
(),
message:
(
e
[
'message'
]
??
''
).
toString
(),
))
.
toList
());
}
return
GraphQLResponse
<
T
>.
fromResponse
(
res
);
}
on
Exception
catch
(
_
)
{
}
on
Exception
catch
(
err
)
{
return
GraphQLResponse
<
T
>(
graphQLErrors:
[
GraphQLError
(
code:
null
,
message:
_
.
toString
(),
message:
err
.
toString
(),
)
]);
}
...
...
@@ -357,11 +360,11 @@ class GetConnect extends GetConnectInterface {
.
toList
());
}
return
GraphQLResponse
<
T
>.
fromResponse
(
res
);
}
on
Exception
catch
(
_
)
{
}
on
Exception
catch
(
err
)
{
return
GraphQLResponse
<
T
>(
graphQLErrors:
[
GraphQLError
(
code:
null
,
message:
_
.
toString
(),
message:
err
.
toString
(),
)
]);
}
...
...
lib/get_navigation/src/dialog/dialog_route.dart
View file @
2c44623
...
...
@@ -67,6 +67,6 @@ class GetDialogRoute<T> extends PopupRoute<T> {
),
child:
child
);
}
// Some default transition
return
_transitionBuilder
!
(
context
,
animation
,
secondaryAnimation
,
child
);
return
_transitionBuilder
(
context
,
animation
,
secondaryAnimation
,
child
);
}
}
...
...
pubspec.yaml
View file @
2c44623
...
...
@@ -4,14 +4,15 @@ version: 5.0.0-release-candidate-5
homepage
:
https://github.com/jonataslaw/getx
environment
:
sdk
:
"
>=3.0.0
<4.0.0"
sdk
:
"
>=3.4.0
<4.0.0"
flutter
:
"
>=3.22.0"
dependencies
:
flutter
:
sdk
:
flutter
flutter_web_plugins
:
sdk
:
flutter
web
:
any
web
:
"
>=0.4.0
<0.6.0"
dev_dependencies
:
flutter_lints
:
^4.0.0
...
...
test/rx/rx_workers_test.dart
View file @
2c44623
...
...
@@ -7,8 +7,8 @@ void main() {
test
(
'once'
,
()
async
{
final
count
=
0
.
obs
;
var
result
=
-
1
;
once
(
count
,
(
dynamic
_
)
{
result
=
_
as
int
;
once
(
count
,
(
dynamic
val
)
{
result
=
val
as
int
;
});
count
.
value
++;
await
Future
.
delayed
(
Duration
.
zero
);
...
...
@@ -41,9 +41,9 @@ void main() {
test
(
'debounce'
,
()
async
{
final
count
=
0
.
obs
;
int
?
result
=
-
1
;
debounce
(
count
,
(
dynamic
_
)
{
debounce
(
count
,
(
dynamic
val
)
{
// print(_);
result
=
_
as
int
?;
result
=
val
as
int
?;
},
time:
const
Duration
(
milliseconds:
100
));
count
.
value
++;
...
...
Please
register
or
login
to post a comment