요즘 공부중인 Flutter에서 상단에 메뉴 버튼을 간단히 붙이는 방법입니다.
appBar: AppBar(
title: Text('Google Map'),
centerTitle: true,
elevation: 0.0,
leading: IconButton(
icon: Icon(Icons.menu),
onPressed: (){
print('menu clicked');
},
),
),
상단에 메뉴버튼이 들어가 있는 모습입니다. ^^
flutter String to double 함수 (0) | 2021.04.27 |
---|---|
Flutter 햄버거메뉴(Drawer) 구현 방법 (0) | 2021.04.23 |
Flutter Appbar 검색버튼 붙이기 (0) | 2021.04.21 |
Flutter 기존 project 에 web 추가 (0) | 2021.03.29 |
Cannot resolve symbol 'Properties' in Flutter (0) | 2021.01.10 |