An open API service indexing awesome lists of open source software.

https://github.com/binaryscraping/swiftui-toast

A Toast implementation for SwiftUI
https://github.com/binaryscraping/swiftui-toast

Last synced: 11 months ago
JSON representation

A Toast implementation for SwiftUI

Awesome Lists containing this project

README

          

# ToastUI

## Usage

```swift
struct ContentView: View {
@State var tostPresented = false

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