Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save codeactual/8dd061552164300285aaf7fcefc6500b to your computer and use it in GitHub Desktop.

Select an option

Save codeactual/8dd061552164300285aaf7fcefc6500b to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
@State var horizontal: Bool = true
@Namespace var namespace
var body: some View {
VStack(spacing: 40) {
if horizontal {
HStack { items }
} else {
VStack { items }
}
Button("Toggle") {
withAnimation { horizontal.toggle() }
}
}
.padding()
}
@ViewBuilder var items: some View {
Ellipse().fill(Color.red)
.matchedGeometryEffect(id: "circle", in: namespace)
Capsule().fill(Color.green)
.matchedGeometryEffect(id: "capsule", in: namespace)
Rectangle().fill(Color.blue)
.matchedGeometryEffect(id: "rectangle", in: namespace)
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment