From fb0fa73c0330e3f6baac74fc4450d6729d8f9528 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Mon, 4 Sep 2023 16:22:50 +0530 Subject: [PATCH] Use Sizebox.shrink() --- lib/ui/code_widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/code_widget.dart b/lib/ui/code_widget.dart index 73e0cf03cc..393670f4a6 100644 --- a/lib/ui/code_widget.dart +++ b/lib/ui/code_widget.dart @@ -179,7 +179,7 @@ class _CodeWidgetState extends State { children: [ (widget.code.hasSynced != null && widget.code.hasSynced!) || !hasConfiguredAccount - ? Container() + ? const SizedBox.shrink() : const Icon( Icons.sync_disabled, size: 20,