import SwiftUI struct EmptyStateView: View { var body: some View { VStack(spacing: 16) { Image(systemName: "checklist") .font(.system(size: 64)) .foregroundStyle(Color(.systemGray3)) Text("No todos yet!\nTap + to add one") .font(.title3) .foregroundStyle(.secondary) .multilineTextAlignment(.center) } .frame(maxWidth: .infinity, maxHeight: .infinity) } }