About SystemNotification
SystemNotification lets you mimic the native iOS system notification, which for instance is presented when you toggle silent mode on and off, connect your AirPods etc.
The result can look like this, or completely different:
SystemNotification 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
.
Installation
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.
Getting started
The online documentation has a getting started guide guide to help you get started with SystemNotification.
SystemNotification supports both state- and context-based notifications. Context-based notifications work similar to sheet
, alert
and fullScreenModal
, but use an observable SystemNotificationContext
instead of state:
struct MyView: View {
@StateObject
private var notification = SystemNotificationContext()
var body: some View {
List {
Button("Show notification", action: showNotification)
Button("Show orange notification", action: showCustomNotification)
}.systemNotification(notification)
}
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 views you like as notification messages.")
}
.foregroundColor(.white)
.padding()
}
}
}
The context-based approach lets you use the same context in your entire application, with a single view modifier being applied to a single view hierarchy.
For more information, please see the online documentation and getting started guide.
Documentation
The online documentation has articles, code examples etc. that let you overview the various parts of the library.
Demo Application
The demo app lets you explore the library on iOS and macOS. To try it out, just open and run the Demo
project.
Support this library
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.
Contact
Feel free to reach out if you have questions or if you want to contribute in any way:
- Website: danielsaidi.com
- Mastodon: @[email protected]
- Twitter: @danielsaidi
- E-mail: [email protected]
License
SystemNotification is available under the MIT license. See the LICENSE file for more info.