From 989ba4b9c47382edc9ff27a3bd70724814c7e1ce Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Jan 2023 10:03:27 -0700 Subject: [PATCH] Bottom align page indicator on carousel --- .../widgets/_bottom_text_content.dart | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/ui/screens/artifact/artifact_carousel/widgets/_bottom_text_content.dart b/lib/ui/screens/artifact/artifact_carousel/widgets/_bottom_text_content.dart index dfdb271c..1fc1803a 100644 --- a/lib/ui/screens/artifact/artifact_carousel/widgets/_bottom_text_content.dart +++ b/lib/ui/screens/artifact/artifact_carousel/widgets/_bottom_text_content.dart @@ -62,17 +62,17 @@ class _BottomTextContent extends StatelessWidget { ).animate(key: ValueKey(artifact.artifactId)).fadeIn(), ), ), - Gap($styles.insets.sm), - if (!shortMode) - AppPageIndicator( - count: state._artifacts.length, - controller: state._pageController!, - semanticPageTitle: $strings.artifactsSemanticArtifact, - ), ], ), if (!shortMode) Gap($styles.insets.md), Spacer(), + if (!shortMode) + AppPageIndicator( + count: state._artifacts.length, + controller: state._pageController!, + semanticPageTitle: $strings.artifactsSemanticArtifact, + ), + Gap($styles.insets.md), AppBtn.from( text: $strings.artifactsButtonBrowse, icon: AppIcons.search,