Skip to content

Commit

Permalink
ALTAPPS-1058: iOS polish up SearchPlaceholderLoadingView
Browse files Browse the repository at this point in the history
ivan-magda committed Dec 18, 2023
1 parent e9c39be commit e36b356
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -3,14 +3,15 @@ import SwiftUI
struct SearchPlaceholderLoadingView: View {
var body: some View {
ScrollView([], showsIndicators: false) {
VStack(alignment: .leading) {
ForEach(0..<10) { _ in
LazyVStack(alignment: .leading) {
ForEach(0..<20) { _ in
SkeletonRoundedView()
.frame(height: 60)
}
}
.padding([.horizontal, .bottom])
}
.edgesIgnoringSafeArea(.bottom)
}
}

0 comments on commit e36b356

Please sign in to comment.