Skip to content

Instantly share code, notes, and snippets.

View AppArtistry's full-sized avatar
🎯
Focusing

AppArtistry AppArtistry

🎯
Focusing
  • Munich
  • 19:42 (UTC -12:00)
View GitHub Profile
@AppArtistry
AppArtistry / Project1_Flowing_Particle_Background.swift
Last active May 28, 2024 10:00
Flowing Particle Background
import SwiftUI
struct Particle: Hashable, Equatable {
var x: Double
var y: Double
var dateTimeToHide: Date
var fallSpeed: Double
}
class Particles: ObservableObject {