Received Failed to produce diagnostic for expression; please file a bug report
var body: some View {
VStack{
headerView
ScrollView(.horizontal, showsIndicators: false) {
HStack(spacing: 10) {
ForEach(wallet.cards.indices, id: \self) { index in Text(wallet.cards[index].cardNumber)
}
}
}
Spacer()
}
}
}
var body: some View {
VStack{
headerView
ScrollView(.horizontal, showsIndicators: false) {
HStack(spacing: 10) {
ForEach(wallet.cards.indices, id: \self) { index in Text(wallet.cards[index].cardNumber)
}
}
}
Spacer()
}
}
}