This repository has been archived by the owner on Dec 27, 2020. It is now read-only.
Releases: spacenation/swiftui-grid
Releases · spacenation/swiftui-grid
Final Release
Custom grid styles
1.0.4 public grid preferences item init (#102)
Examples and tests
More examples (#91) * sectioned grid ios * layout and examples
Deployment target 13.1
1.0.2 deployment target (#87)
Inlinable style
1.0.1 inlinable style (#85)
Release 1.0.0
This release contains breaking changes.
- ScrollView has been removed from Grid
- Padding has been removed from styles
This API is now stable with 1.0.0
\\\ Scrollable grid
ScrollView {
Grid {
...
}
.padding(16)
}
.gridStyle(
ModularGridStyle(.vertical, columns: .min(100), rows: .fixed(100))
)
\\\ Static grid
Grid {
...
}
.gridStyle(
ModularGridStyle(columns: 3, rows: 2)
)
This allows us to embed grid anywhere since scrollview is now optional.
Also it is possible now to have sections, list of grids and even grid of grids.
Removing private @State
0.9.5 removing private state (#73)
Package URL
Package url (#71) * package url * badge url
Grid package
Grid is now a separate package. Other packages have been moved to:
https://github.com/swift-extensions/charts
https://github.com/swift-extensions/shapes
https://github.com/swift-extensions/sliders
Separating packages
Grid (#67) * ios target * macOS target * watchOS target * tvOS target * Update README.md * tests * removing old demo