From 13f81a9beeaca69aea6ac83dd649c457ff1b0698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Poizat?= Date: Tue, 10 Feb 2026 17:45:48 +0100 Subject: [PATCH] Include spacer in tablet bottom bar Scribe button --- .../widgets/mobile/tablet_bottom_bar_composer_widget.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/features/composer/presentation/widgets/mobile/tablet_bottom_bar_composer_widget.dart b/lib/features/composer/presentation/widgets/mobile/tablet_bottom_bar_composer_widget.dart index ee92c87a8..534d8d987 100644 --- a/lib/features/composer/presentation/widgets/mobile/tablet_bottom_bar_composer_widget.dart +++ b/lib/features/composer/presentation/widgets/mobile/tablet_bottom_bar_composer_widget.dart @@ -40,7 +40,7 @@ class TabletBottomBarComposerWidget extends StatelessWidget { child: Row( children: [ const Spacer(), - if (onOpenAiAssistantModal != null) + if (onOpenAiAssistantModal != null) ...[ AiAssistantButton( imagePaths: imagePaths, margin: const EdgeInsetsDirectional.only( @@ -48,7 +48,8 @@ class TabletBottomBarComposerWidget extends StatelessWidget { ), onOpenAiAssistantModal: onOpenAiAssistantModal!, ), - const SizedBox(width: TabletBottomBarComposerWidgetStyle.space), + const SizedBox(width: TabletBottomBarComposerWidgetStyle.space), + ], TMailButtonWidget.fromIcon( icon: imagePaths.icDeleteMailbox, borderRadius: TabletBottomBarComposerWidgetStyle.iconRadius,