cofounderella/lib/utils/helper_dialogs.dart

44 lines
1.1 KiB
Dart
Raw Normal View History

2024-06-14 14:28:59 +02:00
import 'package:flutter/material.dart';
/// Show a simple message dialog
void showMsg(BuildContext context, String title, String content) {
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text(title),
content: Text(content),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: const Text('OK'),
),
],
),
);
}
/// Show an error colored SnackBar with a [Dismiss] Button
2024-06-14 14:28:59 +02:00
void showErrorSnackBar(BuildContext context, String message) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(
message,
style: TextStyle(
fontSize: 16,
color: Theme.of(context).colorScheme.onErrorContainer,
),
),
backgroundColor: Theme.of(context).colorScheme.errorContainer,
2024-06-14 14:28:59 +02:00
action: SnackBarAction(
label: 'Dismiss',
textColor: Theme.of(context).colorScheme.primary,
2024-06-14 14:28:59 +02:00
onPressed: () {
ScaffoldMessenger.of(context).hideCurrentSnackBar();
},
),
),
);
}