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
Ravi Parmar
2021-11-02 22:56:50 +0530
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2021-11-02 22:56:50 +0530
Commit
5be5fb8d826905785b5c403209ea48eafb3c7369
5be5fb8d
1 parent
e7c29169
Added ciruclarReveal
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
lib/get_navigation/src/routes/get_transition_mixin.dart
lib/get_navigation/src/routes/get_transition_mixin.dart
View file @
5be5fb8
...
...
@@ -462,6 +462,22 @@ Cannot read the previousTitle for a route that has not yet been installed''',
child:
child
)
:
child
);
case
Transition
.
ciruclarReveal
:
return
CircularRevealTransition
().
buildTransitions
(
context
,
route
.
curve
,
route
.
alignment
,
animation
,
secondaryAnimation
,
route
.
popGesture
??
Get
.
defaultPopGesture
?
CupertinoBackGestureDetector
<
T
>(
gestureWidth:
route
.
gestureWidth
?.
call
(
context
)
??
_kBackGestureWidth
,
enabledCallback:
()
=>
_isPopGestureEnabled
<
T
>(
route
),
onStartPopGesture:
()
=>
_startPopGesture
<
T
>(
route
),
child:
child
)
:
child
);
default
:
if
(
Get
.
customTransition
!=
null
)
{
return
Get
.
customTransition
!.
buildTransition
(
context
,
route
.
curve
,
...
...
Please
register
or
login
to post a comment