Created
January 23, 2022 11:18
-
-
Save SarahAlsharif/64664f2cd4e2c0453316741ff8720c1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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