Skip to content

Instantly share code, notes, and snippets.

@kirti-swiggy
Last active March 21, 2025 10:59
Show Gist options
  • Save kirti-swiggy/28deb56180fdde84983dbe89a8cb726c to your computer and use it in GitHub Desktop.
Save kirti-swiggy/28deb56180fdde84983dbe89a8cb726c to your computer and use it in GitHub Desktop.
The Vasco da Gama In Me

General purpose stuff


My fuck-around-and-find-out moments

  • If the shadow inside section controller is being clipped off. Make clipsToBound/layer.maskToBound false for ASCellNode
  • If you are facing animation issues with Texture, try to group the concerned nodes in a container node and just animate the container. Don't use setNeedsLayout or layoutIfNeeded for root node (imp)
  • If your view's frame is important to you and applying transform in an UIView animation block making it jump, try using CABasicAnimation. One latent benefit is CABasicAnimation runs on a 'proxy' layer so your host view won't get affected.
  • SwiftUI - If there is a composite view and different layers are not animating in sync, use drawingGroup or geometryGroup . One of the two would surely work. Reference article.
  • SwiftUI - TabView is weirdly engineered. It doesn't hugs the content. For a dynamic content TabView, use geometry reader first to get the intrinsic height ans then assign it a fixed height. Also, in a peculiar case TabView's content was shifted a bit up. I had to wrap it in a ScrollView (with scroll disabled) to make it work.
  • safeAreaInset(edge: .top, alignment: .leading) to place something like a backbutton. Can (haven't tried yet?) also be used to stick a content to bottom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment