Small fixup

This commit is contained in:
Dennis Fokin 2023-07-14 10:55:22 +02:00
parent 7d26c4d409
commit 5d0afa3bfb
No known key found for this signature in database
GPG Key ID: 870B88256690D8BC

View File

@ -124,7 +124,7 @@ class _ListScreenState extends ConsumerState<ListScreen> {
});
},
icon: const Icon(Icons.edit_outlined),
color: Colors.white,
color: darkMode ? Colors.white : Colors.black,
),
]),
title: Text(getTitle(cred),
@ -132,30 +132,25 @@ class _ListScreenState extends ConsumerState<ListScreen> {
value: isUnique(cred) ? (checkedCreds[cred] ?? true) : false,
enabled: isUnique(cred),
subtitle: cred.issuer != null
subtitle: cred.issuer != null || !isUnique(cred)
? Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
if (cred.issuer != null)
Text(cred.name,
overflow: TextOverflow.fade,
maxLines: 1,
softWrap: false),
isUnique(cred)
? Text('')
: Text(
if (!isUnique(cred))
Text(
l10n.l_name_already_exists,
style: TextStyle(
style: const TextStyle(
color: primaryRed,
fontSize: 12,
),
)
])
: isUnique(cred)
? null
: Text(
l10n.l_name_already_exists,
style: TextStyle(color: primaryRed, fontSize: 12),
),
: null,
onChanged: (bool? value) {
setState(() {
checkedCreds[cred] = value!;