Skip to content

Instantly share code, notes, and snippets.

@iAmVishal16
Created April 9, 2023 12:53
Show Gist options
  • Select an option

  • Save iAmVishal16/e65fa3096db12ac7307026739aa9c1c5 to your computer and use it in GitHub Desktop.

Select an option

Save iAmVishal16/e65fa3096db12ac7307026739aa9c1c5 to your computer and use it in GitHub Desktop.
//
// 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