Files
hermes/mobile/ios-app/Features/Feed/FeedView.swift
T

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))
}
}