File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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.
1215class ResponsiveGridView extends StatelessWidget {
1316 final Axis scrollDirection;
1417 final bool reverse;
You can’t perform that action at this time.
0 commit comments