Improve display of results

This commit is contained in:
Christoph Hagen
2025-02-07 14:08:51 +01:00
parent 7ebc9d8404
commit dc7ab6fb15
7 changed files with 276 additions and 84 deletions

View File

@ -5,10 +5,14 @@ struct ListPopup: View {
@Environment(\.dismiss)
var dismiss
let title: LocalizedStringKey
let items: [String]
var body: some View {
VStack {
Text(title)
.font(.title)
List {
ForEach(items, id: \.self) { page in
Text(page)