IT業界の技術をメモ・情報公開できる

Flutter基礎 Column・Row

登録日:2024-01-30   
Flutter
Column
子ウィジェットを縦に並べるためのウィジェット


Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('こんにちは'),
Text('こんばんは'),
], // 子ウィジェット
),
オプションは他にもある

Row
子ウィジェットを縦に並べるためのウィジェット


Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('こんにちは'),
Text('こんばんは'),
], // 子ウィジェット
),
オプションは他にもある

一覧に戻る