🐛 Fixes
This commit is contained in:
@@ -42,6 +42,16 @@ class AccountName extends StatelessWidget {
|
|||||||
StellarMembershipMark(membership: account.perkSubscription!),
|
StellarMembershipMark(membership: account.perkSubscription!),
|
||||||
if (account.profile.verification != null)
|
if (account.profile.verification != null)
|
||||||
VerificationMark(mark: account.profile.verification!),
|
VerificationMark(mark: account.profile.verification!),
|
||||||
|
if (account.automatedId != null)
|
||||||
|
Tooltip(
|
||||||
|
message: 'automatedAccount'.tr(),
|
||||||
|
child: Icon(
|
||||||
|
Symbols.smart_toy,
|
||||||
|
size: 16,
|
||||||
|
color: nameStyle.color,
|
||||||
|
fill: 1,
|
||||||
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -141,7 +151,7 @@ class VerificationStatusCard extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Column(
|
return Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Icon(
|
Icon(
|
||||||
mark.type == 4
|
mark.type == 4
|
||||||
|
@@ -107,7 +107,7 @@ class AccountProfileCard extends HookConsumerWidget {
|
|||||||
size: 17,
|
size: 17,
|
||||||
fill: 1,
|
fill: 1,
|
||||||
).padding(right: 2),
|
).padding(right: 2),
|
||||||
Text('accountAutomated').tr(),
|
Text('accountAutomated').tr().fontSize(12),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (data.profile.timeZone.isNotEmpty && !kIsWeb)
|
if (data.profile.timeZone.isNotEmpty && !kIsWeb)
|
||||||
|
Reference in New Issue
Block a user