Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-09 15:50:44 +05:00
parent 57421002b1
commit 7ea613144d

View file

@ -3,6 +3,8 @@ package com.tangem.feature.tester.presentation.testpush.ui
import androidx.compose.foundation.clickable
import androidx.compose.foundation.interaction.MutableInteractionSource
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.imePadding
import androidx.compose.foundation.layout.navigationBarsPadding
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
@ -29,8 +31,12 @@ internal fun TestPushDeeplinkBottomSheet(config: TangemBottomSheetConfig?) {
@Composable
private fun TestPushMenuDeepLinkBottomSheetContent(config: TangemBottomSheetConfig) {
TangemBottomSheet<TestPushMenuConfigUM>(config) { content ->
LazyColumn {
TangemBottomSheet<TestPushMenuConfigUM>(config = config, addBottomInsets = false) { content ->
LazyColumn(
modifier = Modifier
.navigationBarsPadding()
.imePadding(),
) {
items(
items = content.itemList.toList(),
key = { it },
@ -56,8 +62,12 @@ private fun TestPushMenuDeepLinkBottomSheetContent(config: TangemBottomSheetConf
@Composable
private fun TestPushMarketsTokenBottomSheetContent(config: TangemBottomSheetConfig) {
TangemBottomSheet<TestPushMarketsTokenConfigUM>(config) { content ->
LazyColumn {
TangemBottomSheet<TestPushMarketsTokenConfigUM>(config = config, addBottomInsets = false) { content ->
LazyColumn(
modifier = Modifier
.navigationBarsPadding()
.imePadding(),
) {
item(key = "Markets Search") {
OutlineTextField(
label = "Title",