16 lines
431 B
Swift
16 lines
431 B
Swift
import SwiftUI
|
|
|
|
struct FeedView: View {
|
|
var body: some View {
|
|
VStack(alignment: .leading, spacing: 12) {
|
|
Text("Next round")
|
|
.font(.headline)
|
|
Text("A new clip is ready for review.")
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
.padding()
|
|
.background(HermesTheme.surface)
|
|
.clipShape(RoundedRectangle(cornerRadius: 20, style: .continuous))
|
|
}
|
|
}
|