Settings working on front-end and with it the notifications list

This commit is contained in:
rzuasti
2026-03-03 12:20:57 -05:00
parent 1d029c8c5f
commit dc2521da65
5 changed files with 181 additions and 24 deletions
+31
View File
@@ -0,0 +1,31 @@
import 'package:flutter/material.dart';
class UISnackbars {
static void showError(BuildContext context, String message) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(
message,
style: TextStyle(color: Theme.of(context).colorScheme.onError),
),
behavior: SnackBarBehavior.floating,
showCloseIcon: true,
backgroundColor: Theme.of(context).colorScheme.error,
),
);
}
static void showSuccess(BuildContext context, String message) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(
message,
style: TextStyle(color: Theme.of(context).colorScheme.onPrimary),
),
behavior: SnackBarBehavior.floating,
showCloseIcon: true,
backgroundColor: Colors.lightGreen,
),
);
}
}