App/Flutter
[ FLUTTER ] 햄버거버튼 만들기
거북
2021. 10. 2. 12:33
*Code View
*Screen:
*메뉴화면(Drawer) 닫기 이벤트:
TextButton(
onPressed: () {
setState(() {
widget.menuDrawerController.visibled.value = false;
Navigator.pop(context);
});
},
style: TextButton.styleFrom(
padding: EdgeInsets.only(left: SizeConfig.largePadding),
),
child: Row(
children: const [
Icon(Icons.quiz),
SizedBox(width: 20),
Text('닫기 >',
style: TextStyle(
fontSize: FontConfig.fontSize3,
fontWeight: EliceWeight.bold)),
],
)
),
Navigator.pop(context);