make the fake chat bubbles in landing screen scrollable

pull/891/head
Ryan ZHAO 10 months ago
parent c9130326bc
commit 63ca28b002

@ -209,6 +209,7 @@ struct FakeChat: View {
] ]
var body: some View { var body: some View {
ScrollView(showsIndicators: false) {
VStack( VStack(
alignment: .leading, alignment: .leading,
spacing: 18 spacing: 18
@ -233,11 +234,14 @@ struct FakeChat: View {
} }
} }
} }
.frame(maxWidth: .infinity)
.frame( .frame(
height: 320, height: 320,
alignment: .bottom alignment: .bottom
) )
.padding(.horizontal, 36) .padding(.horizontal, 36)
}
.fixedSize(horizontal: false, vertical: true)
.onAppear { .onAppear {
guard numberOfBubblesShown < 4 else { return } guard numberOfBubblesShown < 4 else { return }

Loading…
Cancel
Save