Updated on 2026-08-14
This commit is contained in:
parent
f52e85bcca
commit
473a936863
11 changed files with 235 additions and 19 deletions
|
|
@ -137,6 +137,7 @@ private fun Preview_BlockchainRow(@PreviewParameter(BlockchainRowParameterProvid
|
|||
private class BlockchainRowParameterProvider : CollectionPreviewParameterProvider<BlockchainRowUM>(
|
||||
collection = listOf(
|
||||
BlockchainRowUM(
|
||||
id = "0",
|
||||
name = "BNB BEACON CHAIN",
|
||||
type = "BEP20",
|
||||
iconResId = R.drawable.img_bsc_22,
|
||||
|
|
@ -144,6 +145,7 @@ private class BlockchainRowParameterProvider : CollectionPreviewParameterProvide
|
|||
isSelected = true,
|
||||
),
|
||||
BlockchainRowUM(
|
||||
id = "1",
|
||||
name = "1234567890111213141516171819",
|
||||
type = "BEP20",
|
||||
iconResId = R.drawable.ic_bsc_16,
|
||||
|
|
@ -151,6 +153,7 @@ private class BlockchainRowParameterProvider : CollectionPreviewParameterProvide
|
|||
isSelected = false,
|
||||
),
|
||||
BlockchainRowUM(
|
||||
id = "2",
|
||||
name = "BNB BEACON CHAIN",
|
||||
type = "1234567890111213141516171819",
|
||||
iconResId = R.drawable.ic_bsc_16,
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ import androidx.compose.runtime.Immutable
|
|||
|
||||
@Immutable
|
||||
data class BlockchainRowUM(
|
||||
val id: String,
|
||||
val name: String,
|
||||
val type: String,
|
||||
val iconResId: Int,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue