Skip to content

Commit

Permalink
Merge pull request #32 from payan-app/image-improvement
Browse files Browse the repository at this point in the history
refactor: remove lazy stack in horizontal stack
  • Loading branch information
juandahurt authored Aug 27, 2022
2 parents 4db4a82 + b63cc02 commit 8f63e50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public struct PuraceHorizontalGridView: View {
public var body: some View {
GeometryReader { reader in
ScrollView(.horizontal) {
LazyHStack(spacing: 5) {
HStack(spacing: 5) {
ForEach(stacks.indices, id: \.self) { index in
PuraceHGridVerticalStack(contents: stacks[index].contents)
.frame(width: stacks.count == 1 ? reader.size.width : reader.size.width * 0.9)
Expand Down

0 comments on commit 8f63e50

Please sign in to comment.