Increase top padding on footnote

This commit is contained in:
Elias Bonnici 2024-02-13 12:56:11 +01:00
parent f3e34ae3af
commit 513674b5ea
No known key found for this signature in database
GPG Key ID: 5EAC28EA3F980CCF
2 changed files with 5 additions and 3 deletions

View File

@ -202,7 +202,8 @@ class AppPage extends StatelessWidget {
Align(
alignment: centered ? Alignment.center : Alignment.centerLeft,
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 16, horizontal: 16),
padding: const EdgeInsets.only(
top: 16, bottom: 0, left: 16, right: 16),
child: Wrap(
spacing: 8,
runSpacing: 4,
@ -212,7 +213,8 @@ class AppPage extends StatelessWidget {
),
if (footnote != null)
Padding(
padding: const EdgeInsets.all(16),
padding:
const EdgeInsets.only(bottom: 16, top: 33, left: 16, right: 16),
child: Opacity(
opacity: 0.6,
child: Text(

View File

@ -110,7 +110,7 @@ class _FidoLockedPage extends ConsumerWidget {
},
avatar: const Icon(Icons.fingerprint_outlined),
),
if (!isBio && alwaysUv)
if (!isBio && alwaysUv && !expanded)
ActionChip(
label: Text(l10n.s_set_pin),
onPressed: () async {