Skip to content

Instantly share code, notes, and snippets.

@michael94ellis
michael94ellis / SwiftUIAppToaster.swift
Last active June 11, 2025 11:10
A simple way to show a toast in SwiftUI apps over all other view activity.
// Inspired by Federico Zanetello
// https://www.fivestars.blog/articles/swiftui-windows/
import UIKit
import SwiftUI
struct ToastView: View {
let message: String
/// Total duration that the toast will be visible on screen
let duration: TimeInterval