Implemented the (first version of the) Recording Live Activity in the Attendi widget target.
This commit is contained in:
@@ -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")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user