showErrorDialog static method
void
showErrorDialog(
- String message, {
- String title = "",
})
Implementation
static void showErrorDialog(String message, {String title = ""}) {
if (title == "") {
title = "ERROR".tr;
}
Get.dialog(
Dialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
child: Padding(
padding: const EdgeInsets.all(24.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(
Icons.error_outline,
color: Colors.red,
size: 64,
),
const SizedBox(height: 16),
Text(
title,
style: const TextStyle(
fontWeight: FontWeight.bold,
fontSize: 24,
),
),
const SizedBox(height: 16),
Text(
message,
textAlign: TextAlign.center,
style: const TextStyle(fontSize: 18),
),
const SizedBox(height: 24),
ElevatedButton(
onPressed: () => Get.back(),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
),
child: const Padding(
padding: EdgeInsets.symmetric(
horizontal: 24.0,
vertical: 12.0,
),
child: Text(
'OK',
style: TextStyle(fontSize: 18),
),
),
),
],
),
),
),
);
}