Implemented the (first version of the) Recording Live Activity in the Attendi widget target.

This commit is contained in:
2026-07-06 03:43:25 +02:00
parent ffa80d3b58
commit 874de398d2
15 changed files with 755 additions and 4 deletions
@@ -0,0 +1,15 @@
import SwiftUI
extension Image {
/// The system symbol constants.
enum Symbol {
/// The symbol of the discard buttons.
static let discard = Image(systemName: "trash.fill")
/// The symbol marking the recording flow: the icon of the state label while recording, and of the resume button.
static let microphone = Image(systemName: "mic.fill")
/// The symbol of the pause button, and the icon of the state label while paused.
static let pause = Image(systemName: "pause.fill")
/// The symbol of the send button, and the icon of the state label while processing.
static let send = Image(systemName: "paperplane.fill")
}
}