Skip to content

Commit

Permalink
Add /Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirCreator authored Sep 28, 2023
1 parent f92a3b4 commit c8025b2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Chip Layout

## Table of Contens
- [Preview](#preview)
- [Usage](#usage)
- [Example](#example)

## Preview

## Usage
1. Open `ChipLayout.swift`
2. Press <kbd>⌘</kbd> + <kbd>A</kbd>
3. Press <kbd>⌘</kbd> + <kbd>C</kbd>
4. Press <kbd>⌘</kbd> + <kbd>V</kbd>
5. Use

## Example
```swift
import SwiftUI

internal struct ContentView: View {
internal var body: some View {
ChipLayout {
ForEach(0..<256) {
Text("Chip \($0 + 1)")
}
}
}
}
```

0 comments on commit c8025b2

Please sign in to comment.