Embed in ScrollView

This commit is contained in:
Joel Klabo
2023-02-24 12:42:49 -08:00
committed by William Casarin
parent 9f52e2c246
commit 85e797a054
+2
View File
@@ -36,6 +36,7 @@ struct ParticipantsView: View {
Spacer() Spacer()
} }
VStack { VStack {
ScrollView {
ForEach(originalReferences.pRefs) { participant in ForEach(originalReferences.pRefs) { participant in
let pubkey = participant.id let pubkey = participant.id
HStack { HStack {
@@ -72,6 +73,7 @@ struct ParticipantsView: View {
} }
} }
} }
}
Spacer() Spacer()
} }
.padding() .padding()