Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexdremov/morphingshapes

SwiftUI Morphing Circle Animation
https://github.com/alexdremov/morphingshapes

animation design ios swift swiftui ui ux

Last synced: 3 days ago
JSON representation

SwiftUI Morphing Circle Animation

Awesome Lists containing this project

README

        

# MorphingShapes

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

https://user-images.githubusercontent.com/25539425/184550942-bb9cc1da-5916-42be-8342-883f200e2cbd.mov

```swift
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()
}
}
```