Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 313 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 313 Bytes

ToastUI

Usage

struct ContentView: View {
    @State var tostPresented = false

    var body: some View {
        Button("Show toast") { 
            toastPresented = true 
        }
        .toast(isPresented: $toastPresented) { 
            ToastView(title: "This a toast")
        }
    }
}