We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b79483d commit ea63162Copy full SHA for ea63162
lib/pages/popular/popular_page.dart
@@ -164,8 +164,13 @@ class _PopularPageState extends State<PopularPage>
164
}
165
166
Widget contentGrid(bangumiList) {
167
- int crossCount =
168
- MediaQuery.of(context).orientation != Orientation.portrait ? 6 : 3;
+ int crossCount = 3;
+ if (MediaQuery.sizeOf(context).width > LayoutBreakpoint.compact['width']!) {
169
+ crossCount = 5;
170
+ }
171
+ if (MediaQuery.sizeOf(context).width > LayoutBreakpoint.medium['width']!) {
172
+ crossCount = 6;
173
174
return SliverGrid(
175
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
176
// 行间距
0 commit comments