확인창 띄우기
Future<void> _neverSatisfied() async {
return showDialog<void>(
//다이얼로그 위젯 소환
context: context,
barrierDismissible: false, // 다이얼로그 이외의 바탕 눌러도 안꺼지도록 설정
builder: (BuildContext context) {
return AlertDialog(
title: Text('제목'),
content: SingleChildScrollView(
child: ListBody(
//List Body를 기준으로 Text 설정
children: <Widget>[
Text('Alert Dialog 입니다'),
Text('OK를 눌러 닫습니다'),
],
),
),
actions: [
TextButton(
child: Text('확인'),
onPressed: () {
Navigator.of(context).pop();
},
),
TextButton(
child: Text('취소'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
}
'ETC > Flutter' 카테고리의 다른 글
[flutter] 도로명 주소 검색하기 kpostal Pacakge (1) | 2021.11.20 |
---|---|
[flutter] url(네트워크) 이미지 불러오기 (0) | 2021.11.18 |
[flutter] GetX 상태관리에 대해 알아보자 (0) | 2021.11.09 |
[flutter] Row(행) 과 Column(열) 위젯 이란? (0) | 2021.11.06 |
[flutter] DropdownButton 사용하기 (0) | 2021.11.06 |
[flutter] body안에서 tabbar 사용하기 (0) | 2021.11.01 |
댓글