diff --git a/lib/app/features/auth/views/pages/fill_profile/fill_profile.dart b/lib/app/features/auth/views/pages/fill_profile/fill_profile.dart index e016f952b..56e5acebd 100644 --- a/lib/app/features/auth/views/pages/fill_profile/fill_profile.dart +++ b/lib/app/features/auth/views/pages/fill_profile/fill_profile.dart @@ -51,6 +51,9 @@ class FillProfile extends HookConsumerWidget { } void onSave() { + nameFieldFocusNode.unfocus(); + nicknameFieldFocusNode.unfocus(); + inviterFieldFocusNode.unfocus(); nameFieldKey.currentState!.validateText(); nicknameFieldKey.currentState!.validateText(); inviterFieldKey.currentState!.validateText(); diff --git a/lib/app/features/wallet/views/pages/wallet_page.dart b/lib/app/features/wallet/views/pages/wallet_page.dart index 284a0ee86..ae98640c7 100644 --- a/lib/app/features/wallet/views/pages/wallet_page.dart +++ b/lib/app/features/wallet/views/pages/wallet_page.dart @@ -150,28 +150,47 @@ class WalletPage extends HookConsumerWidget { // ), // JUST LABEL BUTTONS - Button( - onPressed: () {}, - label: const Text('Add'), - mainAxisSize: MainAxisSize.max, - ), - Button( - onPressed: () {}, - label: const Text('Remove'), - type: ButtonType.secondary, - mainAxisSize: MainAxisSize.max, - ), - Button( - onPressed: () {}, - label: const Text('Outlined'), - type: ButtonType.outlined, - mainAxisSize: MainAxisSize.max, - ), - Button( - onPressed: () {}, - label: const Text('Disabled'), - type: ButtonType.disabled, - mainAxisSize: MainAxisSize.max, + ColoredBox( + color: const Color.fromARGB(255, 207, 207, 207), + child: Padding( + padding: const EdgeInsets.symmetric(horizontal: 16), + child: Column( + children: [ + Button( + onPressed: () {}, + label: const Text('Add'), + mainAxisSize: MainAxisSize.max, + ), + const SizedBox( + height: 10, + ), + Button( + onPressed: () {}, + label: const Text('Remove'), + type: ButtonType.secondary, + mainAxisSize: MainAxisSize.max, + ), + const SizedBox( + height: 10, + ), + Button( + onPressed: () {}, + label: const Text('Outlined'), + type: ButtonType.outlined, + mainAxisSize: MainAxisSize.max, + ), + const SizedBox( + height: 10, + ), + Button( + onPressed: () {}, + label: const Text('Disabled'), + type: ButtonType.disabled, + mainAxisSize: MainAxisSize.max, + ), + ], + ), + ), ), const SizedBox(