Skip to content
This repository has been archived by the owner on Dec 27, 2020. It is now read-only.

Releases: spacenation/swiftui-grid

Final Release

27 Dec 00:25
623f995
Compare
Choose a tag to compare

This repository will be archived after this release

Custom grid styles

05 Apr 23:41
a3441f8
Compare
Choose a tag to compare
1.0.4

public grid preferences item init (#102)

Examples and tests

29 Mar 05:42
50c14fa
Compare
Choose a tag to compare
More examples (#91)

* sectioned grid ios

* layout and examples

Deployment target 13.1

27 Mar 03:44
0b35d0d
Compare
Choose a tag to compare
1.0.2

deployment target (#87)

Inlinable style

26 Mar 18:22
e352376
Compare
Choose a tag to compare
1.0.1

inlinable style (#85)

Release 1.0.0

14 Mar 21:44
978cc2e
Compare
Choose a tag to compare

This release contains breaking changes.

  1. ScrollView has been removed from Grid
  2. 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

23 Feb 19:07
6548e52
Compare
Choose a tag to compare
0.9.5

removing private state (#73)

Package URL

15 Feb 22:58
512de56
Compare
Choose a tag to compare
Package url (#71)

* package url

* badge url

Grid package

27 Jan 21:36
0179cd7
Compare
Choose a tag to compare

Separating packages

27 Jan 21:08
e1c8b4c
Compare
Choose a tag to compare
Grid (#67)

* ios target

* macOS target

* watchOS target

* tvOS target

* Update README.md

* tests

* removing old demo