From 254ab00abb012ce97416e667618d1859a9f50fb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=88=D0=B8=D0=BD=20=D0=9C=D0=B0=D0=BA=D1=81?= =?UTF-8?q?=D0=B8=D0=BC?= Date: Fri, 27 Oct 2023 00:59:22 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9A=D1=80=D0=B0=D1=81=D0=B8=D0=B2=D1=8B?= =?UTF-8?q?=D0=B9=20=D1=81=D0=BF=D0=B8=D1=81=D0=BE=D0=BA,=20=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D0=B0=D0=BB=D0=BE=D1=81=D1=8C=20=D0=B2=20=D0=BD=D0=B5?= =?UTF-8?q?=D0=BC=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BA=D0=B8=20=D0=B4=D0=BE?= =?UTF-8?q?=D0=B1=D0=B0=D0=B2=D0=B8=D1=82=D1=8C,=20=D0=BC=D0=B1=20=D1=88?= =?UTF-8?q?=D1=80=D0=B8=D1=84=D1=82=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D1=82=D1=8C,=20=D0=B0=20=D1=81=D0=B5=D0=B9=D1=87=D0=B0?= =?UTF-8?q?=D1=81=20=D1=8F=20=D0=BF=D0=BE=D0=B9=D0=B4=D1=83=20=D0=BC=D1=8B?= =?UTF-8?q?=D1=82=D1=8C=20=D0=BF=D0=BE=D1=81=D1=83=D0=B4=D1=83,=20=D0=B7?= =?UTF-8?q?=D0=B0=D0=B2=D1=82=D1=80=D0=B0=20=D0=B2=206=20=D1=83=D1=82?= =?UTF-8?q?=D1=80=D0=B0=20=D1=83=D0=B5=D0=B7=D0=B6=D0=B0=D1=82=D1=8C=20(?= =?UTF-8?q?=D1=87=D0=B5=D1=80=D0=B5=D0=B7=205=20=D1=87=D0=B0=D1=81=D0=BE?= =?UTF-8?q?=D0=B2=20=D1=83=D0=B6=D0=B5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/example/labwork/button_navigation/Screens.kt | 2 +- .../com/example/labwork/button_navigation/SlideNavigation.kt | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/example/labwork/button_navigation/Screens.kt b/app/src/main/java/com/example/labwork/button_navigation/Screens.kt index b54b300..fac168c 100644 --- a/app/src/main/java/com/example/labwork/button_navigation/Screens.kt +++ b/app/src/main/java/com/example/labwork/button_navigation/Screens.kt @@ -59,7 +59,7 @@ fun ScreenProfile() { @Composable fun ScreenListProduct() { LazyColumn( - modifier = Modifier.fillMaxHeight() + modifier = Modifier.fillMaxHeight().padding(bottom = 65.dp) ) { itemsIndexed( listOf( diff --git a/app/src/main/java/com/example/labwork/button_navigation/SlideNavigation.kt b/app/src/main/java/com/example/labwork/button_navigation/SlideNavigation.kt index ed97093..c939b7a 100644 --- a/app/src/main/java/com/example/labwork/button_navigation/SlideNavigation.kt +++ b/app/src/main/java/com/example/labwork/button_navigation/SlideNavigation.kt @@ -35,7 +35,9 @@ fun SlideNavigation( BottomNavigation( backgroundColor = Color.White, - modifier = Modifier.padding(10.dp).shadow(2.dp) + modifier = Modifier.padding(10.dp), + elevation = 5.dp + ) { val backStackEntry by navController.currentBackStackEntryAsState() val currentRout = backStackEntry?.destination?.route