Skip to content

Commit 7724666

Browse files
committed
v0.0.9 Release
1 parent 3888802 commit 7724666

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.0.9
4+
- Create ResponsiveGridView that extends GridView with more grid layout controls.
5+
- Use ResponsiveGridView for shrink and fixed item sizing options with the ability to control alignment and max row count.
6+
- Breaking - simplified `autoScaleDown` behavior to only scale down from the specified breakpoint.
7+
38
## 0.0.8
49
- New breakpoint calculation algorithm.
510
- Create `debugLog` parameter. Pretty print a visual view of breakpoint segments for debugging purposes.

lib/responsive_grid.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ import 'package:flutter/widgets.dart';
66
///
77
/// ResponsiveGridView extends [GridView] with
88
/// a custom [ResponsiveGridDelegate] [gridDelegate]
9-
/// that enables greater item size control.
10-
/// Additional parameters [alignment] and [maxRowCount]
11-
/// add grid item positioning capabilities.
9+
/// that adds more grid layout controls.
10+
/// See [ResponsiveGridDelegate] for shrink and
11+
/// fixed item size options.
12+
/// Additional customization parameters [alignment]
13+
/// and [maxRowCount] adds the ability to align
14+
/// items and limit items in a row.
1215
class ResponsiveGridView extends StatelessWidget {
1316
final Axis scrollDirection;
1417
final bool reverse;

0 commit comments

Comments
 (0)