leading과 actions
AppBar위젯에서 사용되는 속성
애플리케이션의 상단바에 표시되는 요소를 배치하는데 사용됨
leading: 왼쪽, 뒤로가기 버튼 등 (A)
actions: 오른쪽, 여러위젯을 지정하는 속성 (C, D)
appBar: AppBar(
title: Text('Flutter AppBar Example'),
leading: IconButton(
icon: Icon(Icons.menu),
onPressed: () {
// Menu button action
print('Menu button pressed');
},
),
actions: <Widget>[
IconButton(
icon: Icon(Icons.search),
onPressed: () {
// Search button action
print('Search button pressed');
},
),
IconButton(
icon: Icon(Icons.notifications),
onPressed: () {
// Notifications button action
print('Notifications button pressed');
},
),
],
),
'Flutter' 카테고리의 다른 글
UserAccountsDrawerHeader, Drawer에 사용자의 정보를 담는법 (0) | 2024.08.12 |
---|---|
Drawer 삽입하기(feat. endDrawer, automaticallyImplyLeading) (0) | 2024.08.12 |
Flutter의 Widget: 위젯트리와 루트위젯, 구성위젯과 컨테이너 위젯 상태 Stateful 위젯과 비상태 Stateless 위젯 (0) | 2024.08.12 |
Flutter dart 수평/수직 구분선 - Divider VerticalDivider (0) | 2024.08.06 |
Flutter dart CircleAvatar 원형을 생성하는 위젯 (0) | 2024.08.06 |