notifications colors fix

This commit is contained in:
amirrezaghabeli
2025-09-29 09:15:40 +03:30
parent bc89e69209
commit 4ef3ca206d
8 changed files with 39 additions and 26 deletions
@@ -3,6 +3,7 @@ import 'package:provider/provider.dart';
import 'package:tm_app/view_models/notification_view_model.dart';
import 'package:tm_app/views/notification/strings/notification_strings.dart';
import '../../../core/theme/colors.dart';
import 'notification_card.dart';
class NotificationAllTab extends StatelessWidget {
@@ -16,7 +17,9 @@ class NotificationAllTab extends StatelessWidget {
if (viewModel.isLoadingAll &&
(viewModel.allNotificationResponse?.data?.isEmpty ?? true)) {
return const Center(child: CircularProgressIndicator());
return const Center(
child: CircularProgressIndicator(color: AppColors.cyanTeal),
);
}
final notifications = viewModel.allNotificationResponse?.data ?? [];
@@ -38,4 +41,3 @@ class NotificationAllTab extends StatelessWidget {
);
}
}