Last active
July 2, 2019 18:42
-
-
Save yfujiki/35dcdc9c36a2930b204c79d966949c43 to your computer and use it in GitHub Desktop.
Cats Section for https://github.com/yfujiki/SwiftUICollectionLayoutSample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ForEach(cats.identified(by: \.self)) { | |
Image($0) | |
.resizable() | |
.frame(width: UIScreen.main.bounds.width - 20, height: (UIScreen.main.bounds.width - 20) * 0.67) | |
.cornerRadius(10) | |
.padding(EdgeInsets(top: 0, leading: 10, bottom: 0, trailing: 10)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment