こんにちは、フラメルです。
今回はContainer
などwidth
で横幅いっぱいに広げる方法を紹介します。
目次
widthで横幅いっぱいに広げる方法
width
で横幅いっぱいに広げるにはdouble.infinity
を使用します。
height
で高さを最大限広げる際も同様です。
Container(
width: double.infinity,
height: 200,
color: Colors.blue,
),
サンプルコード
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Flutter'),
),
body: Center(
child: Container(
width: double.infinity,
height: 200,
color: Colors.blue,
),
),
),
);
}
}
以上です。