Hi,
Just teste the last version 0.6.0 and find what look like an issue.
With a crossAxisCount of 3
pattern: <QuiltedGridTile>[
const QuiltedGridTile(1, 1),
const QuiltedGridTile(1, 1),
const QuiltedGridTile(2, 2),
]
produce an out of bound error.
Where the following pattern does not :
pattern: <QuiltedGridTile>[
const QuiltedGridTile(2, 2),
const QuiltedGridTile(1, 1),
const QuiltedGridTile(1, 1),
]
Regards
Hi,
Just teste the last version 0.6.0 and find what look like an issue.
With a crossAxisCount of 3
produce an out of bound error.
Where the following pattern does not :
Regards