v0.2.1
smart_grid_view
一个响应式网格视图,其交叉轴子项数量会根据可用的水平尺寸进行调整。
16喜欢 8近 30 天下载30Pub 分数
平台暂无数据
一个响应式网格视图,其交叉轴子项数量会根据可用的水平尺寸进行调整。
{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
A responsive grid view that changes it's cross axis child count based on the available horizontal size.
This widget is great for creating responsive designs as the sized of tiles stays about the same across different screen sizes.
Using the width of tiles, SmartGridview will calculate the crossAxisCount for the underlying GridView with maxWidth ~/ tileWidth.
The tileHeight is used with tileWidth to calculate gridChildRatio.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Example')),
body: SmartGridView(
tileWidth: 128,
tileHeight: 168,
children: List.generate(80, (index) => Card(
child: GridTile(
child: Text('tile #$index'),
),
)),
),
),
);
}
}
https://raw.githubusercontent.com/ali2236/smart_grid_view/HEAD/pictures/1.jpg https://raw.githubusercontent.com/ali2236/smart_grid_view/HEAD/pictures/2.jpg