Created
August 19, 2023 19:48
-
-
Save zurche/19310cb542d154b89a7679a64806321f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun AssetPerformanceCard( | |
assetInfo: AssetInfo = mockAssetInfo | |
) { | |
Card( | |
modifier = Modifier | |
.wrapContentHeight() | |
.fillMaxWidth() | |
.padding(start = 5.dp, end = 5.dp, bottom = 5.dp), | |
colors = CardDefaults.cardColors(containerColor = CryptoWhite) | |
) { | |
Row( | |
horizontalArrangement = Arrangement.SpaceBetween, | |
verticalAlignment = Alignment.CenterVertically, | |
modifier = Modifier | |
.padding(15.dp) | |
.fillMaxWidth() | |
) { | |
// TODO: Place here the other views of our Composable! | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment