Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 347 Bytes

File metadata and controls

13 lines (12 loc) · 347 Bytes

YYTagLayout

A Custom layout for show tags

Usage

  • Just like VStack or HStack you can customize the h & v spacing
          YYTagLayout(alignment: .leading,horizontalSpacing: 10,verticalSpacing: 10) {
              ForEach(tags,id: \.self) { tag in
                  TagItem(tag: tag)
              }
          }
          .padding(10)