diff --git a/CHANGELOG.md b/CHANGELOG.md index eabb960ed1..577c2f9b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ - [FIX] Text overflow on apps card - [FIX] SD Card error on installed screen - [FIX] Scrolling of zoomed screenshots in app image preview +- [FIX] Infrared editor screen bottom navigation padding - [FIX] Display MfKey32 loading progress when no keys available - [FIX] Return baseline profiles - [Feature] Add not connected, empty and syncing states to emulation button on key screen diff --git a/components/infrared/editor/src/main/kotlin/com/flipperdevices/infrared/editor/compose/screen/ComposableInfraredEditorScreenReady.kt b/components/infrared/editor/src/main/kotlin/com/flipperdevices/infrared/editor/compose/screen/ComposableInfraredEditorScreenReady.kt index 62bcd9f2c5..1f644a995a 100644 --- a/components/infrared/editor/src/main/kotlin/com/flipperdevices/infrared/editor/compose/screen/ComposableInfraredEditorScreenReady.kt +++ b/components/infrared/editor/src/main/kotlin/com/flipperdevices/infrared/editor/compose/screen/ComposableInfraredEditorScreenReady.kt @@ -2,9 +2,11 @@ package com.flipperdevices.infrared.editor.compose.screen import androidx.compose.foundation.background import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.PaddingValues import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.navigationBarsPadding import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.itemsIndexed import androidx.compose.runtime.Composable @@ -89,6 +91,7 @@ internal fun ComposableInfraredEditorScreenReady( ) } } + item { Box(modifier = Modifier.navigationBarsPadding()) } } } }