반응형
[flutter]
How to adjust the height of the Grid View widget
(그리드 뷰 위젯 높이 조절하는 방법)
GridView.count의 childAspectRatio를 설정하면 된다.
(Set the childAspectRatio of GridView.count.)
Widget build(BuildContext context) {
var size = MediaQuery.of(context).size;
final double itemHeight = (size.height - kToolbarHeight - 24) / 2;
final double itemWidth = size.width / 2;
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Container(
child: new GridView.count(
crossAxisCount: 2,
childAspectRatio: (itemWidth / itemHeight),
반응형