From eabe213207cf064cbcd9f85226487d350de9a0f4 Mon Sep 17 00:00:00 2001 From: Aman Raj Singh Mourya Date: Mon, 12 May 2025 00:41:04 +0530 Subject: [PATCH] fix: Reorder advance option widget --- auth/lib/onboarding/view/setup_enter_secret_key_page.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/auth/lib/onboarding/view/setup_enter_secret_key_page.dart b/auth/lib/onboarding/view/setup_enter_secret_key_page.dart index a04e3e5be4..38fa6f5a54 100644 --- a/auth/lib/onboarding/view/setup_enter_secret_key_page.dart +++ b/auth/lib/onboarding/view/setup_enter_secret_key_page.dart @@ -293,10 +293,6 @@ class _SetupEnterSecretKeyPageState extends State { ], ), const SizedBox(height: 12), - widget.code == null - ? advanceOptionWidget() - : const SizedBox.shrink(), - const SizedBox(height: 12), Wrap( spacing: 12, alignment: WrapAlignment.start, @@ -343,6 +339,10 @@ class _SetupEnterSecretKeyPageState extends State { ), ], ), + const SizedBox(height: 12), + widget.code == null + ? advanceOptionWidget() + : const SizedBox.shrink(), const SizedBox(height: 40), SizedBox( width: 400,