diff --git a/lib/create/page.dart b/lib/create/page.dart index cf75054d..9533ae82 100644 --- a/lib/create/page.dart +++ b/lib/create/page.dart @@ -91,8 +91,8 @@ class _Screen extends StatelessWidget { const Words(), const Gap(32), const CreateWalletPassField(), - const Gap(32), - const _WalletLabel(), + const Gap(12), + const CreateWalletLabel(), const Gap(40), const CreateWalletCreateButton(), const Gap(80), @@ -154,15 +154,15 @@ class CreateWalletPassField extends HookWidget { } } -class _WalletLabel extends StatelessWidget { - const _WalletLabel(); +class CreateWalletLabel extends StatelessWidget { + const CreateWalletLabel(); @override Widget build(BuildContext context) { final text = context.select((CreateWalletCubit cubit) => cubit.state.walletLabel ?? ''); return Padding( - padding: const EdgeInsets.symmetric(horizontal: 32), + padding: const EdgeInsets.all(16.0), child: BBTextInput.big( value: text, onChanged: (value) => context.read().walletLabelChanged(value),