From f43fbf61ab15213d0fd2e952ec4167a0676cf255 Mon Sep 17 00:00:00 2001 From: dab246 Date: Mon, 23 Sep 2024 16:16:54 +0700 Subject: [PATCH] Remove blink blink of `next - previous` button in Email View --- .../presentation/widgets/email_view_app_bar_widget.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/features/email/presentation/widgets/email_view_app_bar_widget.dart b/lib/features/email/presentation/widgets/email_view_app_bar_widget.dart index 5317f78a2..bcfb5f138 100644 --- a/lib/features/email/presentation/widgets/email_view_app_bar_widget.dart +++ b/lib/features/email/presentation/widgets/email_view_app_bar_widget.dart @@ -74,8 +74,6 @@ class EmailViewAppBarWidget extends StatelessWidget { const Spacer(), Row( children: [ - if(optionsWidget != null) - ...optionsWidget!, const SizedBox(width: EmailViewAppBarWidgetStyles.space), TMailButtonWidget.fromIcon( icon: _imagePaths.icMoveEmail, @@ -156,6 +154,9 @@ class EmailViewAppBarWidget extends StatelessWidget { ? (position) => onMoreActionClick?.call(presentationEmail, position) : null ), + if(optionsWidget != null) + ...optionsWidget!, + const SizedBox(width: EmailViewAppBarWidgetStyles.space), ] ), ])