From 5b74e30b239a0885a91513fafe85281b5f59b167 Mon Sep 17 00:00:00 2001 From: grummbeer Date: Tue, 6 Jun 2023 11:01:22 +0200 Subject: [PATCH] Page Install. ProgressIndiactor space to buttons. --- flutter/lib/desktop/pages/install_page.dart | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/flutter/lib/desktop/pages/install_page.dart b/flutter/lib/desktop/pages/install_page.dart index 8f3c36dab..4dda8cda8 100644 --- a/flutter/lib/desktop/pages/install_page.dart +++ b/flutter/lib/desktop/pages/install_page.dart @@ -208,10 +208,12 @@ class _InstallPageBodyState extends State<_InstallPageBody> Row( children: [ Expanded( - child: Obx(() => Offstage( - offstage: !showProgress.value, - child: LinearProgressIndicator(), - ))), + child: Obx(() => Offstage( + offstage: !showProgress.value, + child: + LinearProgressIndicator().marginOnly(right: 10), + )), + ), Obx( () => OutlinedButton.icon( icon: Icon(Icons.close_rounded, size: 16),