FlatButton 클릭 시 AlertDialog를 해제하는 방법은 무엇입니까? 나는 다음을 가지고 있습니다.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()기각합니다.AlertDia..