Bottom align page indicator on carousel

This commit is contained in:
Shawn 2023-01-03 10:03:27 -07:00
parent f3bc60fb7c
commit 989ba4b9c4

View File

@ -62,17 +62,17 @@ class _BottomTextContent extends StatelessWidget {
).animate(key: ValueKey(artifact.artifactId)).fadeIn(), ).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), if (!shortMode) Gap($styles.insets.md),
Spacer(), Spacer(),
if (!shortMode)
AppPageIndicator(
count: state._artifacts.length,
controller: state._pageController!,
semanticPageTitle: $strings.artifactsSemanticArtifact,
),
Gap($styles.insets.md),
AppBtn.from( AppBtn.from(
text: $strings.artifactsButtonBrowse, text: $strings.artifactsButtonBrowse,
icon: AppIcons.search, icon: AppIcons.search,