こんにちは、フラメルです。
今回はContainer
の高さ・横幅を変更する方法を紹介します。
目次
Containerの高さ・横幅を変更する方法
Container
の高さ・横幅はそれぞれheight
・width
で指定できます。
Container(
width: 200,
height: 200,
color: Colors.red,
),
サンプルコード
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: 200,
height: 200,
color: Colors.red,
),
),
),
);
}
}
以上です。