Some checks failed
CI / test (push) Has been cancelled
Bring the SwiftUI app in line with the Apple-native mock and keep pending approvals actionable from Live Activities and watch complications.
12 lines
179 B
Swift
12 lines
179 B
Swift
import SwiftUI
|
|
|
|
struct StatusDot: View {
|
|
let color: Color
|
|
|
|
var body: some View {
|
|
Circle()
|
|
.fill(color)
|
|
.frame(width: 8, height: 8)
|
|
}
|
|
}
|