From 497ae937fd312fd992be91d957fdda8d354ab423 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 30 Dec 2024 20:32:53 -0500 Subject: [PATCH] Fixes the navigation padding on Samsung devices for the Shorts tab. --- .../amethyst/ui/screen/loggedIn/video/VideoScreen.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/video/VideoScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/video/VideoScreen.kt index 2d1ef7488..f934e37f6 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/video/VideoScreen.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/video/VideoScreen.kt @@ -31,6 +31,7 @@ import androidx.compose.foundation.layout.consumeWindowInsets import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.navigationBarsPadding import androidx.compose.foundation.layout.padding import androidx.compose.foundation.pager.VerticalPager import androidx.compose.foundation.pager.rememberPagerState @@ -308,7 +309,7 @@ private fun RenderVideoOrPictureNote( } } - Row(modifier = Modifier.fillMaxSize(1f), verticalAlignment = Alignment.Bottom) { + Row(modifier = Modifier.fillMaxSize(1f).navigationBarsPadding(), verticalAlignment = Alignment.Bottom) { Column(Modifier.weight(1f), verticalArrangement = Arrangement.Center) { RenderAuthorInformation(note, nav, accountViewModel) }