This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |