Changed some colors

This commit is contained in:
Juan Gilsanz Polo 2023-01-29 21:52:37 +01:00
parent 7caa464b5b
commit 842e81495e
23 changed files with 89 additions and 90 deletions

View file

@ -220,9 +220,9 @@ class _ClientsListState extends State<ClientsList> {
Text(
AppLocalizations.of(context)!.loadingClients,
textAlign: TextAlign.center,
style: const TextStyle(
style: TextStyle(
fontSize: 22,
color: Colors.grey,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
)
],
@ -295,9 +295,9 @@ class _ClientsListState extends State<ClientsList> {
Text(
noItems(),
textAlign: TextAlign.center,
style: const TextStyle(
style: TextStyle(
fontSize: 24,
color: Colors.grey
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
),
const SizedBox(height: 30),
@ -355,9 +355,9 @@ class _ClientsListState extends State<ClientsList> {
Text(
AppLocalizations.of(context)!.clientsNotLoaded,
textAlign: TextAlign.center,
style: const TextStyle(
style: TextStyle(
fontSize: 22,
color: Colors.grey,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
)
],