hoony's web study

728x90
반응형

flutter 

요즘 공부중인 Flutter에서 상단에 메뉴 버튼을 간단히 붙이는 방법입니다.

appBar: AppBar(
        title: Text('Google Map'),
        centerTitle: true,
        elevation: 0.0,
        leading: IconButton(
          icon: Icon(Icons.menu),
          onPressed: (){
            print('menu clicked');
          },
        ),
      ),

 

상단에 메뉴버튼이 들어가 있는 모습입니다. ^^

728x90

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading