25 lines
562 B
Swift
25 lines
562 B
Swift
import SwiftUI
|
|
|
|
struct EmptyTasksView: View {
|
|
var body: some View {
|
|
VStack(spacing: 12) {
|
|
Image(systemName: "checkmark.circle")
|
|
.font(.system(size: 48))
|
|
.foregroundColor(.gray.opacity(0.5))
|
|
|
|
Text("No tasks yet")
|
|
.font(.subheadline)
|
|
.foregroundColor(.secondary)
|
|
}
|
|
.frame(maxWidth: .infinity)
|
|
.padding(32)
|
|
.background(Color(.systemBackground))
|
|
.cornerRadius(12)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
EmptyTasksView()
|
|
.padding()
|
|
}
|