본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

Flutter

leading과 actions

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');
              },
            ),
          ],
        ),