Skip to content

Instantly share code, notes, and snippets.

@oliverepper
Created June 10, 2021 07:05
Show Gist options
  • Save oliverepper/56161d402f169c2f92152c7041a387c2 to your computer and use it in GitHub Desktop.
Save oliverepper/56161d402f169c2f92152c7041a387c2 to your computer and use it in GitHub Desktop.
struct ContentView: View {
@State private var oben = false
var body: some View {
VStack {
if oben {
Text("HA").id(4)
Spacer()
} else {
Spacer()
Text("HA").id(4)
}
}
.animation(.linear(duration: 2.0))
.font(.largeTitle)
.onTapGesture {
oben.toggle()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment