Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismays/0f64919ce11078507352ed29855d3dc3 to your computer and use it in GitHub Desktop.
Save chrismays/0f64919ce11078507352ed29855d3dc3 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