Layouts in Flutter
- 以下に記載のあるソースコードは以下のサイトのものを利用しています
- 以下の2パターンがありそう
- Layout Widget…配置などを指定するWidget(Container, Row, Columnなど)
- Visible Widget…子要素が実際に目に見えるWidget(Text, Cartなど)
- Row/Columnに置いて
mainAxisAlignment
とcrossAxisAliment
を指定して行 or 列をどのように整列させるか制御できる - イメージ
- 整列の例としては以下がある
- 大きくなりすぎたりする場合は
Expand
を利用する Expand
を利用する際、flex
プロパティを利用すれば他の要素と比べてN倍のサイズを指定できる- 小さくまとめたい場合は
mainAxisSize
でmin
を指定すればいい
- padding, margin, borderや背景などの装飾を変更できる
- 子要素は一つ
- 使用例
Container(
decoration: const BoxDecoration(
color: Colors.black26,
),
child: Column(
children: [
_buildImageRow(1),
_buildImageRow(3),
],
),
);
Container(
decoration: BoxDecoration(
border: Border.all(width: 10, color: Colors.black38),
borderRadius: const BorderRadius.all(Radius.circular(8)),
),
margin: const EdgeInsets.all(4),
child: Image.asset('images/pic$imageIndex.jpg'),
),
- 2次元リスト
- 自動スクロールあり
- contentでColumnの数を、extentでタイルの最大pixel数を指定できる
- Material DesignにあるCard
ListTile
とよく一緒に使われるSizedBox
を使えばカードの大きさを制約できる- 使用例
Card(
child: Column(
children: [
ListTile(
title: const Text(
'1625 Main Street',
style: TextStyle(fontWeight: FontWeight.w500),
),
subtitle: const Text('My City, CA 99984'),
leading: Icon(
Icons.restaurant_menu,
color: Colors.blue[500],
),
),
const Divider(),
ListTile(
title: const Text(
'(408) 555-1212',
style: TextStyle(fontWeight: FontWeight.w500),
),
leading: Icon(
Icons.contact_phone,
color: Colors.blue[500],
),
),
ListTile(
title: const Text('costa@example.com'),
leading: Icon(
Icons.contact_mail,
color: Colors.blue[500],
),
),
],
),
),
- 最大3行まで表示できる
ListView
やCard
でよく使われる