Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
livid committed Nov 11, 2023
1 parent 51350ae commit 97ebb67
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Planet/versioning.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 1780
CURRENT_PROJECT_VERSION = 1781
14 changes: 7 additions & 7 deletions PlanetLite/AppContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,23 @@ struct AppContentView: View {
.edgesIgnoringSafeArea(.top)
*/

ScrollView() {
ScrollView(.vertical) {
LazyVGrid(
columns: [
GridItem(.adaptive(minimum: 128, maximum: 256), spacing: 20)
GridItem(
.adaptive(minimum: 128, maximum: 256),
spacing: 16
)
],
alignment: .center,
spacing: 20
spacing: 16
) {
ForEach(planet.articles, id: \.self) { article in
MyArticleGridView(article: article)
}

}
.padding([.top], 20)
.padding([.leading], 20)
.padding([.trailing], 20)
.padding([.bottom], 20)
.padding(16)
}
}
default:
Expand Down

0 comments on commit 97ebb67

Please sign in to comment.