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.
⚠️ Note: The current version is still in an early stage. There can be breaking changes in version updates.
- 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
dependencies: [
.package(url: "https://github.com/sanzaru/SimpleToast.git", from: "0.0.1")
]
Simply drag the SimpleToast.swift file into your project.
You can choose from one of the following modifiers:
Modifier | Demo |
---|---|
.slide | |
.fade | |
.scale |
Simply attach the toast to a view and show it via binding with a 5 sec. delay:
import SwiftUI
import SimpleToast
struct ToastTestView: View {
@State var showToast: Bool = false
private let toastOptions = SimpleToastOptions(
delay: 5
)
VStack(spacing: 20) {
Button(
action: {
withAnimation {
self.showToast.toggle()
}
},
label: { Text("Show toast") }
)
}
.simpleToast(isShowing: $showToast, options: toastOptions) {
HStack {
Image(systemName: "exclamationmark.triangle")
Text("This is some simple toast message.")
}
.padding()
.background(Color.red.opacity(0.8))
.foregroundColor(Color.white)
.cornerRadius(10)
}
}
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:
import SwiftUI
import SimpleToast
struct ToastTestView: View {
@State var showToast: Bool = false
private let toastOptions = SimpleToastOptions(
delay: 5
)
VStack(spacing: 20) {
Button(
action: {
withAnimation {
self.showToast.toggle()
}
},
label: { Text("Show toast") }
)
}
.simpleToast(isShowing: $showToast, options: toastOptions, completion: onToastComplete) {
HStack {
Image(systemName: "exclamationmark.triangle")
Text("This is some simple toast message.")
}
.padding()
.background(Color.red.opacity(0.8))
.foregroundColor(Color.white)
.cornerRadius(10)
}
// This will be called on toast completion
func onToastComplete() -> Void {
print("The toast did disappear")
}
}
The toast can be configured via an optional SimpleToastOptions object. If nil is given default values are taken. See table below for more information.
📌 All parameters inside the options are optional.
Option | Description | Default |
---|---|---|
alignment | Defines the alignment of the toast. See https://developer.apple.com/documentation/swiftui/alignment for more information. | .top |
hideAfter | Defines when the toast disappears. If nil is given the toast won't disappear. | nil |
showBackdrop | Defines if the toast is rendered over a backdrop. | true |
backdropColor | Defines the backdrop color | Color.white.opacity(0.9) |
animation | Defines the animation type. See https://developer.apple.com/documentation/swiftui/animation for more information. | .linear |
modifierType | Defines the type of toast animation. Possible values(.slide, .fade) | .fade |
public struct SimpleToastOptions {
var alignment: Alignment = .top
var hideAfter: TimeInterval? = nil
var showBackdrop: Bool? = true
var backdropColor: Color = Color.white.opacity(0.9)
var animation: Animation = .linear
var modifierType: SimpleToastModifierType = .fade
}
- Fixed issue #5: Timer not updated on Toast appear
- Fixed issue #3: Toast won't disappear with timeout set
- New modifier (scale)
- Minor code optimizations
- Fixed gesture handling
- First minor release
- Updated drag gesture for better touch handling
- Better options name
- Better animations and transitions
- Better UI integration
- Fixed slide modifier
- Better slide modifier
- New option names - !! breaking change to previous versions !!
- Fixed access level problems
- New toast animation (slide). Modifier type can now be configured via options
- Drag gesture added, to swipe the toast away
- Customizable backdrop color
- Updated readme
- Added functionality for completion callback
- Minor code fixes
- Updated readme
- Minor code fixes
- Minor code fixes
- Minor code fixes
- Updated readme