maybe test

This commit is contained in:
cranci1 2025-07-11 10:03:33 +02:00
parent b67b44a069
commit 19fe680a86

View file

@ -125,6 +125,30 @@ struct SettingsViewBackup: View {
showDivider: false
)
}
SettingsSection(
title: NSLocalizedString("Backup Informations", comment: "Settings section title for backup informations"),
footer: ""
) {
VStack {
HStack {
Image(systemName: "")
.frame(width: 24, height: 24)
Text("title")
}
Spacer()
HStack {
Image(systemName: "")
.frame(width: 24, height: 24)
Text("title")
}
}
.padding(.horizontal, 16)
.padding(.vertical, 12)
.background(Color.clear)
.contentShape(Rectangle())
}
}
.padding(.vertical, 20)
}