This commit is contained in:
2025-08-08 21:09:11 -04:00
parent 2f044c3d9c
commit 7bcc5d656c
38 changed files with 776 additions and 159 deletions

View File

@ -10,6 +10,7 @@
import SwiftUI
struct ListItem: View {
var systemName: String?
var title: String?
var text: String?
var subtitle: String?
@ -18,6 +19,9 @@ struct ListItem: View {
var body: some View {
HStack {
if let systemName = systemName {
Image(systemName: systemName)
}
VStack (alignment: .leading) {
if let title = title {
Text("\(title)")