Skip to main content
0 votes
0 answers
79 views

I created the following MRE to demonstrate how a SwiftUI view with matchedGeometryEffect in UITableView cell causes visual jump during animation despite height updates. Initially, the cell would not ...
fingia's user avatar
  • 647
0 votes
2 answers
223 views

Is it possible at all to define a @Namespace var outside a View and pass it in to views. For example, to do this in the State class? I have included a baseline code that has matched animations. I have ...
fingia's user avatar
  • 647
2 votes
2 answers
106 views

I am working on geometryMatchEffect and struggled on one point. In my case, when tap on a item, the item should be fly to page of the top and other items should remain backside. And then when tap on ...
Okan T.'s user avatar
  • 86
1 vote
1 answer
76 views

I wanted to create a simple custom segmented control component with animation similar to native component. I have seen lots of people using matchedGeometryEffect for this, however when I implemented ...
Данил Кокин's user avatar
0 votes
1 answer
117 views

I am wanting to animate switching between tabs but the animation are very hard. I tried using matched geometry but the animation was wacky. Could be lack of understanding on matched geometry. The ...
abcdefg's user avatar
  • 119
1 vote
1 answer
259 views

I have a view that uses the .matchedGeometryEffect to make moving transitions. I'd like to be able to switch this effect off if the user objects to this type of animation. I could create two almost ...
alanrick's user avatar
  • 109
0 votes
0 answers
386 views

I'm trying to have a matched geometry effect where a Text() is being animated across two different screens/views. I want the animation to continuously interpolate the texts size between the source ...
Nerdy Bunz's user avatar
  • 7,743
0 votes
0 answers
60 views

In this SwiftUI code, why does the matched geometry effect have a weird asymmetry (there is a slight left/right and up/down wavering -- the Text does not simply animate in a "straight line" ...
Nerdy Bunz's user avatar
  • 7,743
0 votes
1 answer
723 views

I've caught a very strange problem (THAT ONLY OCCURS ON REAL DEVICES) that has to do with using @NameSpace and MatchedGeometryEffect using NavigationStack. The problem is that if I go from the first ...
Simimi_Dot's user avatar
2 votes
1 answer
127 views

I'm trying to create a custom 'tab' selection control with a horizontal row of options and the user can select one of N number of options. The 'selected' option will have a 'border' around it. Here's ...
Z S's user avatar
  • 7,577
2 votes
0 answers
541 views

In SwiftUI, I'm working with two screens, Screen A and Screen B. I'm attempting to create a transition effect using SwiftUI's matched geometry feature. The transition involves two rounded rectangles: ...
Nerdy Bunz's user avatar
  • 7,743
11 votes
3 answers
3k views

I have an overlay transition that uses matchedgeometry effect, as shown in this video: Matched Geometry Effect with same sized text I want to enlarge the transitioned text after the animation, but it ...
tim's user avatar
  • 334