Last active
          July 2, 2019 18:34 
        
      - 
      
- 
        Save yfujiki/9057f3fd3004a95130dc4d904d41d11f to your computer and use it in GitHub Desktop. 
    CatFoods 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
    
  
  
    
  | HStack { | |
| ForEach(stride(from: 0, to: catFoods.count, by: 2).map{ $0 }) { i in | |
| VStack { | |
| Image(catFoods[i]) | |
| .resizable() | |
| .aspectRatio(contentMode: .fit) | |
| .frame(width: UIScreen.main.bounds.width / 2 - 40, height: 100) | |
| .padding(EdgeInsets(top: 0, leading: 10, bottom: 0, trailing: 10)) | |
| Image(catFoods[i + 1]) | |
| .resizable() | |
| .aspectRatio(contentMode: .fit) | |
| .frame(width: UIScreen.main.bounds.width / 2 - 40, height: 100) | |
| .padding(EdgeInsets(top: 0, leading: 10, bottom: 0, trailing: 10)) | |
| } | |
| } | |
| }.padding(10) | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment