[플러터] 9. recipe 위젯 정리

백하림's avatar
May 28, 2025
[플러터] 9. recipe 위젯 정리

폰트 변경 방법

class MTitle extends StatelessWidget { @override Widget build(BuildContext context) { return Text( "Recipes", style: GoogleFonts.patuaOne( textStyle: TextStyle(fontSize: 30), ), ); } }

위젯

🔥
Icon
ClipRRect
AspectRatio
ListView
 
AppBar
Container

AppBar

🔥
상단의 앱 제목/버튼 영역(헤더) 을 담당
notion image

Container

🔥
박스 형태의 레이아웃을 구성하는 기본 위젯
notion image

Icon

🔥
Material 아이콘을 화면에 표시하는 위젯
notion image

ClipRRect

🔥
자식 위젯의 모서리를 둥글게(clipping) 잘라냄 (Round Rect)
notion image

AspectRatio

🔥
자식 위젯의 가로:세로 비율(aspect ratio) 을 유지함.
notion image

ListView

🔥
여러 위젯들을 스크롤 가능하게 나열함
notion image

정리

위젯
역할 설명
주 용도
Icon
아이콘 표시
버튼/리스트/앱바에 사용
ClipRRect
둥근 모서리로 자식 잘라냄
이미지 모양 자르기
AspectRatio
가로:세로 비율 유지
비율 고정 레이아웃
ListView
스크롤 가능한 리스트
스크롤 리스트 만들기
AppBar
상단 헤더 영역
제목/버튼 표시
Container
박스형 UI 구성 요소
스타일/여백/정렬용 박스
Share article

harimmon