Updated on 2026-08-14

This commit is contained in:
Tangem 2022-04-21 10:40:16 +04:00
parent e51be03285
commit 92731ea5c2
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,6 @@
package com.tangem.tap.features.tokens.ui.compose
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
@ -7,6 +8,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import com.tangem.blockchain.common.Blockchain
import com.tangem.tap.domain.tokens.Currency
import com.tangem.tap.features.tokens.redux.ContractAddress
@ -39,7 +41,9 @@ fun ListOfCurrencies(
}
LazyColumn(
modifier = Modifier.fillMaxSize(),
modifier = Modifier
.fillMaxSize(),
contentPadding = PaddingValues(bottom = 90.dp)
) {
val filteredCurrencies = if (searchInput.isBlank()) {

View file

@ -91,7 +91,7 @@ fun NetworkItem(
.align(Alignment.CenterVertically)
) {
Text(
text = blockchain.name.uppercase(),
text = blockchain.fullName.uppercase(),
fontSize = 13.sp,
fontWeight = FontWeight.SemiBold,
color = if (added) Color.Black else Color(0xFF848488),