https://github.com/fluidgroup/swiftui-group-backport
https://github.com/fluidgroup/swiftui-group-backport
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fluidgroup/swiftui-group-backport
- Owner: FluidGroup
- Created: 2024-07-12T06:34:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-12T06:36:32.000Z (almost 2 years ago)
- Last Synced: 2025-06-07T06:02:00.735Z (about 1 year ago)
- Language: Swift
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```swift
#Preview {
VariadicForEach(subviews: Group {
Text("A")
Text("A")
Text("A")
}, content: { v in
HStack {
Text(">")
v
}
})
}
```