SimpleToast for SwiftUI
SimpleToast is a simple, lightweight and easy to use library to show toasts / popup notifications inside your iOS or MacOS application in SwiftUI.
You decide the content, the library takes care about the rest.
Features:
- Custom toast content support: You can show whatever you want inside the toast.
- Timeout functionality: You decide if and when the toast should disappear.
- Callback functionality: Run code when the toast disappeared.
- Multiple animations
Installation
Swift Package Manager
Manual
Simply drag the SimpleToast.swift file into your project.
Screenshots
Simple toast | Complex toast |
---|---|
![]() |
![]() |
Usage:
Simply attach the toast to a view and show it via binding with a 5 sec. delay:
NOTE: The toast respects the frame of the view it is attached to. Make sure the view has enough room to render the toast. Preferably the view should be attached to the most outer view or the navigation view, if available.
To run custom code after the toast did disappear you just simply have to pass a function to the completion parameter:
Options
The toast can be configured via an optional SimpleToastOptions object. If nil is given the default values are taken.
The struct has the following signature:
alignment: Defines the alignment of the toast. See https://developer.apple.com/documentation/swiftui/alignment for more information.
hideAfter: Optional parameter to define when the toast disappears. If nil is given the toast won't disappear.
showBackdrop: Optional parameter to define if the toast is rendered over a backdrop.
backdropColor: Optional parameter for the backdrop color
animation: Optional parameter for the animation type. See https://developer.apple.com/documentation/swiftui/animation for more information.
modifierType: Optional parameter for determining the type of toast animation. Possible values(.slide, .fade), default: .fade