showdialog
-
showDialog 메세지창 띄우기FLUTTER/Common 2022. 9. 11. 14:47
showDialog( context: context, builder: (context) { String sDate = dateFormat.format(selectedDate); return AlertDialog( title: Text("$sDate 작성"), content: TextField( controller: createTextController, ), actions: [ TextButton( onPressed: () { Navigator.pop(context); }, child: Text("취소")), TextButton( onPressed: () { model.create(selectedDate, createTextController.text); createTextController.text =..