Created
April 9, 2023 12:53
-
-
Save iAmVishal16/e65fa3096db12ac7307026739aa9c1c5 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
| // | |
| // ContentView.swift | |
| // ShapesFun | |
| // | |
| // Created by Vishal Paliwal on 09/04/23. | |
| // | |
| import SwiftUI | |
| struct ContentView: View { | |
| @State var isAnimating = false | |
| @State var scale = 1 | |
| var body: some View { | |
| Text("Hello, World!") | |
| } | |
| } | |
| 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