Local Notification
The library for displaying local notifications.
Dependency libraries
dbus-1
Features:
- Show local notification.
- Close local notification by ID.
Example
class AuroraLocalNotification {
fun show(
title: String,
summary: String,
body: String,
): UInt {
return LocalNotification.show(title, summary, body)
}
fun close(id: UInt): Boolean {
return LocalNotification.close(id)
}
}