Skip to content

Instantly share code, notes, and snippets.

@bardigolriz
Last active June 22, 2022 14:26
Show Gist options
  • Select an option

  • Save bardigolriz/dd561a117e3d1db4835638fe4785501c to your computer and use it in GitHub Desktop.

Select an option

Save bardigolriz/dd561a117e3d1db4835638fe4785501c to your computer and use it in GitHub Desktop.
RotatingChevron
import SwiftUI
struct RootView: View {
@State var isExpanded: Bool = false
var body: some View {
Image(systemName: "chevron.right")
.rotationEffect(Angle(degrees: isExpanded ? 90 : 0))
.onTapGesture {
withAnimation {
isExpanded.toggle()
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment