Recreating the iOS App Store home screen with SwiftUI
This is a really simple layout tutorial that will help you recreate the iOS App Store Home Screen in less than 5 minutes using SwiftUI.
To begin, let’s divide the layout into two sections, the top header, and the App cards. Let us look closely at each section.
Header
HStack {
VStack (alignment: .leading) {…