gh-EmergeTools-Pow/Example/Pow Example/Examples/Transitions/SnapshotExample.swift
Joe Fabisevich 781d455727
Moving Pow to @emergetools
Co-authored-by: Robert Böhnke <robb@robb.is>
Co-authored-by: Kasper Lahti <kasper@lahti.email>
2023-11-29 09:38:34 -05:00

38 lines
905 B
Swift

import Pow
import SwiftUI
struct SnapshotExample: View, Example {
@State
var isVisible: Bool = false
var body: some View {
ZStack {
ZStack {
// Placeholder
Rectangle()
.fill(.white)
if isVisible {
Image("disco")
.resizable()
.zIndex(1)
.transition(.movingParts.snapshot)
}
}
.frame(width: 350, height: 525)
}
.defaultBackground()
.onTapGesture {
withAnimation(.easeInOut(duration: 1.8)) {
isVisible.toggle()
}
}
.autotoggle($isVisible, with: .easeInOut(duration: 1.8))
}
static let localPath = LocalPath()
static var icon: Image? {
Image(systemName: "camera")
}
}