Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladimircreator/chiplayout
Visit website to watch a video.
https://github.com/vladimircreator/chiplayout
swift swift-package-manager swiftui
Last synced: 17 days ago
JSON representation
Visit website to watch a video.
- Host: GitHub
- URL: https://github.com/vladimircreator/chiplayout
- Owner: VladimirCreator
- License: apache-2.0
- Created: 2023-09-08T13:16:06.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-24T16:47:18.000Z (3 months ago)
- Last Synced: 2024-10-09T11:20:33.441Z (27 days ago)
- Topics: swift, swift-package-manager, swiftui
- Language: Swift
- Homepage: https://github.com/VladimirCreator/ChipLayout/blob/master/Resources/RPReplay_Final1695936676.mov
- Size: 15.6 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chip Layout
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FVladimirCreator%2FChipLayout%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/VladimirCreator/ChipLayout)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FVladimirCreator%2FChipLayout%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/VladimirCreator/ChipLayout)
![](https://img.shields.io/github/license/VladimirCreator/ChipLayout)
![](https://img.shields.io/github/created-at/VladimirCreator/ChipLayout)![](https://img.shields.io/github/stars/VladimirCreator/ChipLayout)
## Table of Contens
- [Synopsis](#synopsis)
- [Discussion](#discussion)
- [License](#license)
- [Copyright](#copyright)## Synopsis
.
### Keywords
git pulumi
swift
swift-package-manager
swiftui## Discussion
The package consists of the only Swift package and two Xcode projects:
1. [ChipLayout](./Sources/ChipLayout/): the main product
1. [Playground](./Sources/Playground/): a little SwiftUI product that shows the main product in action
1. [GitHub Cover](./Sources/GitHub%20Cover/): a little SwiftUI product that is used to create Open Graph image### Preview
![Preview](./Resources/RPReplay_Final1695936676.mov)
### Getting Started
#### Traditional
1. Open [`Sources/ChipLayout/Sources/ChipLayout.swift`](./Sources/ChipLayout/Sources/ChipLayout.swift)
2. Press ⌘ + A to select all
3. Press ⌘ + C to copy
4. Press ⌘ + V to paste
5. Enjoy#### Tuist
Read [the following documentation](https://docs.tuist.io/documentation/tuist/).
#### Xcode
Read [the following article](https://developer.apple.com/documentation/xcode/adding-package-dependencies-to-your-app/).
### Example
```swift
import SwiftUI
import ChipLayoutinternal struct ContentView: View {
internal var body: some View {
ChipLayout {
ForEach(.zero..<256, id: \.self) { integer in
Text("Chip \(integer)")
}
}
}
}
```## License
This repository is licensed under the terms of the [Apache-2.0](LICENSE) license.
## Copyright
Copyright © 2024 Vladimir Leonidovich. All rights reserved.