mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 00:12:09 +03:00
Ensure consistent padding between list and grid view
This commit is contained in:
parent
af5be9621a
commit
5565382969
@ -135,15 +135,17 @@ class _AccountViewState extends ConsumerState<AccountView> {
|
||||
Theme.of(context).colorScheme.onSecondaryContainer,
|
||||
selected: widget.selected,
|
||||
tileColor: Theme.of(context).hoverColor,
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 8.0),
|
||||
contentPadding:
|
||||
const EdgeInsets.symmetric(horizontal: 8.0, vertical: 4.0),
|
||||
title: Column(
|
||||
children: [
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
AccountIcon(
|
||||
issuer: credential.issuer,
|
||||
defaultWidget: circleAvatar),
|
||||
const SizedBox(width: 8),
|
||||
const SizedBox(width: 12),
|
||||
Flexible(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
|
Loading…
Reference in New Issue
Block a user