Skip to content

Instantly share code, notes, and snippets.

View mishamoix's full-sized avatar
🐹

Mike Malyshev mishamoix

🐹
View GitHub Profile
@mishamoix
mishamoix / AnimationSwiftUI.swift
Last active February 27, 2025 13:55
SwiftUI animation. @namespace and .matchedGeometryEffect
import SwiftUI
struct ContentView: View {
@State private var isProfileExpanded = false
@Namespace private var profileAnimation
private let gradient = LinearGradient(
gradient: Gradient(colors: [.purple, .orange]),