mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +03:00
Increase top padding on footnote
This commit is contained in:
parent
f3e34ae3af
commit
513674b5ea
@ -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(
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user