5
다음 AlertDialog 있습니다.FlatButton 클릭시 AlertDialog를 닫을 수 있습니까?
는showDialog(
context: context,
child: new AlertDialog(
title: const Text("Location disabled"),
content: const Text(
"""
Location is disabled on this device. Please enable it and try again.
"""),
actions: [
new FlatButton(
child: const Text("Ok"),
onPressed: _dismissDialog,
),
],
),
);
는
는 _dismissDialog()에 AlertDialog 말했다 해제를 어떻게 만들 수 ?
감사합니다. Navigator.pop()을 호출하면 대화 상자가 예상대로 닫힙니다. 내 현재 onPressed는 다음과 같습니다 : 'onPressed :() => Navigator.pop (context),' – Gustash