16
कैसे एक फ्लैटबटन पर एक 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()बर्खास्तगी कैसे कह …