Developer defined transition between views, which gives full control to define the animations that are used when a navigation from one view controller to another occurs.
Questions tagged [custom-transition]
86 questions
1
vote
0 answers
How to determine coordinates of view during custom transition animation in IOS 7 after a orientation change?
A quick summary of my issue:
I am using the View Controller Transitioning API in iOS 7 to create a custom transition that expands a cell in a uicollectionview to a fullscreen view when tapped, and shrinks back to the original coordinates when…

louisvanwijk
- 11
- 1
- 1
1
vote
1 answer
Hidden Naviation Bar in first controller appears during custom transition
I am doing custom push transition from controller A to controller B. In Controller A, navbar is hidden but it is visible in Controller B. When I am doing the custom transition, navigation bar immediately appears at the beginning of the transition.…

Nihat
- 3,055
- 3
- 18
- 28
1
vote
1 answer
Horizontal Swiping between UIViewControllers with Parallax Best Practice
I currently face a challenge in which I need to implement a swipe between pages (similar to Yahoo Digest and Yahoo app), also requiring the parallax effect for background images of each UIViewController.
I am weighing a few approaches, not sure…

cohen72
- 2,830
- 29
- 44
1
vote
1 answer
In iOS 7, with customer VC transitioning, is it possible to make "fromviewcontroller" on screen after presentViewController?
Many apps have the feature which, user can pull down one view, and another view shows up from underneath it. But the first view is still visible on the bottom. (e.g. Facebook Paper App).
If the other view is from another view controller, is it…

Andy
- 31
- 3
1
vote
1 answer
Touches not recognized after custom transition
I have an issue with custom transitions on the iPad. I create a custom transition that animates correctly and seems to work (i.e. the transition occurs). However, when I arrive at the destination view controller (after executing the isLoggedIn…

KerrM
- 5,139
- 3
- 35
- 60
1
vote
1 answer
iOS 7 Custom Transition: Will Not Animate
I am hoping you can help me I am trying to implement a Custom Transition in my app that will display a Custom Modal View Controller. I am able to get the View Controller to appear as expected, however, I cannot get the transition to animate. Any…

Michael Miscampbell
- 532
- 4
- 11
0
votes
0 answers
SizeTransition.buildTransition isn't a valid override of CustomTransition.buildTransition
I got error
When I create custom transition, I got the error above. I just copy the code from here
And here is the code:
class SizeTransitions extends CustomTransition {
@override
Widget buildTransition(
BuildContext context,
Curve…
0
votes
0 answers
how to create custom transition animation that moves the view whole, when a button is tapped?
I hope to create a specific custom transition animation for a button
that grows in size to fill center of the screen overlaying the previous ViewController.
luckily I've even found how I want it to look like! (Reference))
I'm new to coding so I…

Kor_Dev
- 1
- 1
0
votes
1 answer
How to use customTransition with named routes in Getx/GetPage?
I want a page transition depending on the page I go.
Transition.cupertino is perfect for one way, like this:
GetPage(
name: Routes.SPLASH_SCREEN,
page: () => SplashView(),
binding: SplashScreenBinding(),
transition:…

xs2bas
- 73
- 1
- 9
0
votes
0 answers
Cannot not get the right value of custom attribute in custom transition
I'm trying to make custom image view that have rounded corners and a custom transition to change a border radius smoothly.
In CircleTransition, I try to get imageCornerRadius but it's always return 0 which ruined the transaction. But in activity,…

Khoa Chau
- 53
- 1
- 5
0
votes
1 answer
How to perform interactive transition with segue?
I have a segue between 2 view controllers.
For dismissing custom interactive transition works fine, but when i perform segue it starts instantly so i can't interact with perform transition. I debugged progress and it shows only 0.0 then segue…

Alexander
- 163
- 8
0
votes
1 answer
React navigation custom screen transition
I am using Stack Navigator with a transitionConfig. In the scene interpolator I have defined myCustomTransition() which is being applied to all the screens in the stack.
Is is possible to have the myCustomTransition() applied to only particular…

Vinay Sharma
- 3,291
- 4
- 30
- 66
0
votes
2 answers
Inactive view in SecondViewController after the transition to it with custom animation through the navigation controller
I have 2 view controllers (ViewController and SecondViewController) and 1 navigation controller:
My project using custom transition animation from ViewController to SecondViewController:
import UIKit
class TransitionManager: NSObject,…

Tkas
- 302
- 3
- 14
0
votes
1 answer
Can't make custom segue in Xcode 10/iOS 12
I'm having the hardest time implementing a presentation of a drawer sliding partway up on the screen on iPhone.
EDIT: I've discovered that iOS is not respecting the .custom modalTransitionStyle I've set in the Segue. If I set that explicitly in…

Rick
- 3,298
- 3
- 29
- 47
0
votes
1 answer
two different custom transitions in a navigationController
I'm trying to make two different custom transition (one fade and one slide from top) within a navigation controller.
The transition works very well the first time but when pop the transitions acting crazy.
I guess that navigationController.delegate…

guiaume
- 67
- 5