SystemNotification can be used to present notifications that mimic the native iOS system notification that for instance are shown when you toggle silent mode on and off, connect your AirPods etc.
The result can look like this, or completely different:
System notifications can be styled and customized to great extent. You can also use completely custom views.
SystemNotification supports iOS 14
, macOS 11
, tvOS 14
and watchOS 7
.
SystemNotification can be installed with the Swift Package Manager:
https://github.com/danielsaidi/SystemNotification.git
If you prefer to not have external dependencies, you can also just copy the source code into your app.
The online documentation has a getting started guide guide to help you get started with SystemNotification.
SystemNotification supports both state- and context-based notifications, where context-based ones give you the most flexibility:
struct ContentView: View {
@StateObject
private var context = SystemNotificationContext()
var body: some View {
NavigationView {
List {
Button("Show notification", action: showNotification)
Button("Show orange notification", action: showCustomNotification)
}
}
.environmentObject(context)
.systemNotification(context)
}
func showNotification() {
notification.present {
SystemNotificationMessage(
icon: Image(systemName: ""),
title: Text("Silent mode")
text: Text("Off"),
style: .init(iconColor: .red)
)
}
}
func showCustomNotification() {
notification.present(
configuration: .init(backgroundColor: .orange)
) {
VStack {
Text("Custom notification")
.font(.headline)
Divider()
Text("SystemNotification supports using any content views you like.")
}
.foregroundColor(.white)
.padding()
}
}
}
In the code above, we both apply a system notification, but also passes in the context as an environment object. This lets other views in the view hierarchy use it to present a notifications from the same root view.
For more information, please see the online documentation and getting started guide.
The online documentation has articles, code examples etc. that let you overview the various parts of the library.
The demo app lets you explore the library on iOS and macOS. To try it out, just open and run the Demo
project.
I manage my various open-source projects in my free time and am really thankful for any help I can get from the community.
You can sponsor this project on GitHub Sponsors or get in touch for paid support.
Feel free to reach out if you have questions or if you want to contribute in any way:
- Website: danielsaidi.com
- Mastodon: @danielsaidi@mastodon.social
- Twitter: @danielsaidi
- E-mail: daniel.saidi@gmail.com
SystemNotification is available under the MIT license. See the LICENSE file for more info.