Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save SarahAlsharif/64664f2cd4e2c0453316741ff8720c1a to your computer and use it in GitHub Desktop.

Select an option

Save SarahAlsharif/64664f2cd4e2c0453316741ff8720c1a to your computer and use it in GitHub Desktop.
struct ContentView: View {
var body: some View {
VStack {
ScrollView {
ZStack {
Rectangle().fill(.orange.opacity(0.4)).frame(height: 800)
Text("Animation").font(.system(size: 50)).padding(.bottom, 80)
Text("inside a scrollview").font(.title)
}
animatedView()
AnimatedBarsGraph()
AnimatedCircle()
AnimatedBox()
}
}.ignoresSafeArea()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment