mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-17 22:29:15 +00:00
Merge pull request 'refactor(ui): Move service descriptions above login info for service cards' (#342) from service-descriptions into master
Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/pulls/342 Reviewed-by: Inex Code <inex.code@selfprivacy.org>
This commit is contained in:
commit
90e73ec2f3
|
@ -160,13 +160,15 @@ class _Card extends StatelessWidget {
|
|||
],
|
||||
),
|
||||
Text(
|
||||
service.loginInfo,
|
||||
service.description,
|
||||
style: Theme.of(context).textTheme.bodyMedium,
|
||||
),
|
||||
const SizedBox(height: 10),
|
||||
Text(
|
||||
service.description,
|
||||
style: Theme.of(context).textTheme.bodyMedium,
|
||||
service.loginInfo,
|
||||
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
||||
color: Theme.of(context).colorScheme.secondary,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 10),
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue