- July 26, 2025
- Mins Read
Android-like toast with very simple interface. (formerly JLToast)
import Toaster
Toast(text: “Hello, world!”).show()
pod ‘Toaster’
github “devxoul/Toaster”
dependencies: [
.package(url: “https://github.com/devxoul/Toaster.git”, from: “master”)
]
Toast(text: “Hello, world!”, duration: Delay.long)
Toast(text: “Hello, world!”, delay: Delay.short, duration: Delay.long)
let toast = Toast(text: “Hello”)
toast.show()
toast.cancel() // remove toast immediately
if let currentToast = ToastCenter.default.currentToast {
currentToast.cancel()
}
ToastCenter.default.cancelAll()
Since Toaster 2.0.0, you can use UIAppearance
to set default appearance. This is an short example to set default background color to red.
ToastView.appearance().backgroundColor = .red
Supported appearance properties are:
Property | Type | Description |
---|---|---|
backgroundColor |
UIColor |
Background color |
cornerRadius |
CGFloat |
Corner radius |
textInsets |
UIEdgeInsets |
Text inset |
textColor |
UIColor |
Text color |
font |
UIFont |
Font |
bottomOffsetPortrait |
CGFloat |
Vertical offfset from bottom in portrait mode |
bottomOffsetLandscape |
CGFloat |
Vertical offfset from bottom in landscape mode |
shadowPath |
CGPath |
The shape of the layer’s shadow |
shadowColor |
UIColor |
The color of the layer’s shadow |
shadowOpacity |
Float |
The opacity of the layer’s shadow |
shadowOffset |
CGSize |
The offset (in points) of the layer’s shadow |
shadowRadius |
CGFloat |
The blur radius (in points) used to render the layer’s shadow |
maxWidthRatio |
CGFloat |
The width ratio of toast view in window |
useSafeAreaForBottomOffset |
Bool |
A Boolean value that determines safeAreaInsets.bottom is added to bottomOffset |
Since Toaster 2.3.0, you can also set an attributed string:
Toast(attributedText: NSAttributedString(string: “AttributedString Toast”, attributes: [NSAttributedString.Key.backgroundColor: UIColor.yellow]))
By default, VoiceOver with UIAccessibility is enabled since Toaster 2.3.0. To disable it:
ToastCenter.default.isSupportAccessibility = false
NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. 💻 Installation 📦 Swift Package Manager Using Swift Package Manager, add ...
An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...
With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...
This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...