Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alexdremov/morphingshapes
- Owner: alexdremov
- Created: 2022-08-14T18:47:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-22T10:59:25.000Z (about 2 years ago)
- Last Synced: 2023-04-25T14:28:38.033Z (over 1 year ago)
- Topics: animation, design, ios, swift, swiftui, ui, ux
- Language: Swift
- Homepage:
- Size: 12.7 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 MorphingShapesstruct ContentView: View {
var body: some View {
VStack {
MorphingCircle(outlineColor: .orange, outlineWidth: 10.0)
}
}
}struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
```