Skip to content

alexdremov/MorphingShapes

Repository files navigation

MorphingShapes

Code for https://alexdremov.me/swiftui-advanced-animation/

shape.mov
import SwiftUI
import MorphingShapes

struct ContentView: View {
    var body: some View {
        VStack {
            MorphingCircle(outlineColor: .orange, outlineWidth: 10.0)
        }
    }
}

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}