What's with Constraints in SwiftUI?
What is happening now with constraints in SwiftUI ? Do View types adapt automatically for bigger devices etc. or what should we have to do instead? RIP, Constraints! SwiftUI doesn't use layout constraints. UIKit is still around, it's not deprecated and fully functional, so if you continue to use the classic approach, you can use as many constraints as you wish. However, if you choose to go with SwiftUI → rest in peace, constraints! The core concept to align views with each other is using stacks: HStack VStack If you want to overlay views (i.e. put one view on top of another), you can use a