fix: Reorder advance option widget

This commit is contained in:
Aman Raj Singh Mourya
2025-05-12 00:41:04 +05:30
parent 5b7f821a26
commit eabe213207

View File

@@ -293,10 +293,6 @@ class _SetupEnterSecretKeyPageState extends State<SetupEnterSecretKeyPage> {
],
),
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<SetupEnterSecretKeyPage> {
),
],
),
const SizedBox(height: 12),
widget.code == null
? advanceOptionWidget()
: const SizedBox.shrink(),
const SizedBox(height: 40),
SizedBox(
width: 400,