Created the Commanding package target in the Features package for controlling the recording flow from Live Activities.

This commit is contained in:
2026-07-05 21:58:20 +02:00
parent cbb5703751
commit d473504d75
7 changed files with 171 additions and 0 deletions
@@ -0,0 +1,11 @@
#if os(iOS)
/// The states of the recording flow a Live Activity can show.
public enum RecordingActivityState: String, Codable, Hashable, Sendable {
/// A recording is in progress and its timer is running.
case recording
/// The recording is paused.
case paused
/// The recorded input is being processed.
case processing
}
#endif