250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- COMMIT
- listview
- github
- it
- GIT
- tip
- reetcode
- swiftlint
- toyproject
- designPattern
- ToDoRim
- SwiftGen
- pubspec.yaml
- UIAccessibility
- algorithm
- Swift
- protocol
- Leetcode
- IOS
- Widget
- enumerations
- xcode
- Equatable
- OSLog
- flutter
- basic
- Extentsion
- keyWindow
- dart
- pubspec
Archives
- Today
- Total
수니의 개발새발
[Flutter/Widget] Column, Row (MainAxisAlignment) 본문
728x90
반응형
앤써북의 ⌜모두가 할 수 있는 플러터 UI 입문⌟을 참고하여 작성하였습니다.
📌 이번 글은
책의 샘플 앱을 만들면서 공부한 위젯 정리입니다.
Column / Row
- 자식을 수직/수평 배열로 표시하는 위젯
- 스크롤되지 않음 (사용 가능한 공간에 맞는 것보다 Column/Row에 더 많은 자식이 있으면, ERROR)
- 공간이 부족할 경우 스크롤 할 수 있도록 ListView 사용
- mainAxisAlignment 속성: Column/Row의 자식을 기본 축을 따라 배치하는 방법 (MainAxisAlignment 사용)
MainAxisAlignment
- Flex Layout에서 기본 축을 따라 자식을 배치하는 방법
- .start / .center / .end / ...
👩🏻💻 사용 예제
- Row
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: Text('Row'),
centerTitle: true,
),
body: Row( // *** Row 위젯 ***
mainAxisAlignment: MainAxisAlignment.center, // Row의 자식을 기본 축을 따라 배치하는 방법
children: [
Icon(Icons.food_bank, color: Colors.black, size: 100),
Icon(Icons.home, color: Colors.black, size: 100),
],
),
),
);
}
}
🙋🏻♀️ 참고
최주호, 정호준, 정동진 공저, ⌜모두가 할 수 있는 플러터 UI 입문⌟, 앤써북(2021), p95~p96
728x90
반응형
'Flutter' 카테고리의 다른 글
[Flutter] Linter (with. flutter_lints) (0) | 2022.03.16 |
---|---|
[Flutter/Widget] Icon (0) | 2022.02.24 |
[Flutter/Widget] Scaffold, Container, BoxDecoration, AppBar (0) | 2022.02.23 |
[Flutter/Dart] final 과 const (0) | 2022.02.15 |
[Flutter/Widget] Text, SafeArea (Debug 배너 해제) (0) | 2022.02.13 |
Comments