flutter-vienna-hackathon-25/wien_talks_flutter/lib/widgets/error_snackbar.dart
2025-08-17 11:57:58 +02:00

16 lines
452 B
Dart

import 'package:flutter/material.dart';
class ErrorSnackbar {
void show(BuildContext context, String message) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text(
message,
style: TextStyle(color: Theme.of(context).colorScheme.onError),
maxLines: 3,
),
showCloseIcon: true,
duration: Duration(seconds: 30),
backgroundColor: Theme.of(context).colorScheme.error,
));
}
}