⌨️ Animated Flickering Effect.
FlickeringEffect.mov
import SwiftUI
struct ContentView: View {
@State private var isFlickering = false
var body: some View {
HStack {
Image(systemName: "clock.badge.fill")
Text("Outdoor Walking")
Spacer()
Text("Due 09:30am")
.foregroundStyle(.secondary)
}
.padding()
.background(.thinMaterial)
.cornerRadius(13)
.opacity(isFlickering ? 1.0 : 0.5)
.foregroundStyle(isFlickering ? .mint : .primary)
.animation(.easeInOut(duration: 1.0).repeatForever(), value: isFlickering)
.onAppear {
isFlickering.toggle()
}
HStack {
Image(systemName: "clock.badge.fill")
Text("Walking with the Dog")
Spacer()
Text("Due 05:00pm")
.foregroundStyle(.secondary)
}
.padding()
.background(.thinMaterial)
.cornerRadius(13)
.phaseAnimator([false, true]) { content, phase in
content
.opacity(phase ? 1.0 : 0.5)
.foregroundStyle(isFlickering ? .mint : .primary)
} animation: { phase in
.easeInOut(duration: 1.0)
}
}
}
#Preview {
ContentView()
.preferredColorScheme(.dark)
}