Updated on 2026-08-14
This commit is contained in:
parent
0afe03c670
commit
0e42927a62
2 changed files with 4 additions and 4 deletions
|
|
@ -40,19 +40,19 @@ object AmountStatePreviewData {
|
|||
appCurrency = AppCurrency.Default,
|
||||
tokenName = stringReference("Tether"),
|
||||
amountTextField = AmountFieldModel(
|
||||
value = "",
|
||||
value = "2 130,81231238",
|
||||
onValueChange = {},
|
||||
keyboardOptions = KeyboardOptions.Default,
|
||||
keyboardActions = KeyboardActions.Default,
|
||||
cryptoAmount = Amount(
|
||||
currencySymbol = "USDT",
|
||||
value = BigDecimal.ZERO,
|
||||
value = "2112312330.81212331238".toBigDecimal(),
|
||||
decimals = 18,
|
||||
type = AmountType.CoinType,
|
||||
),
|
||||
fiatAmount = Amount(
|
||||
currencySymbol = "$",
|
||||
value = BigDecimal.ZERO,
|
||||
value = "2111232330.81".toBigDecimal(),
|
||||
decimals = 2,
|
||||
type = AmountType.CoinType,
|
||||
),
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ private fun AmountBlockV2(
|
|||
) {
|
||||
Column(
|
||||
verticalArrangement = Arrangement.spacedBy(4.dp),
|
||||
modifier = Modifier.padding(top = 8.dp),
|
||||
modifier = Modifier.padding(top = 8.dp).weight(1f),
|
||||
) {
|
||||
ResizableText(
|
||||
text = firstAmount,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue