Skip to content

Commit

Permalink
add todos
Browse files Browse the repository at this point in the history
  • Loading branch information
trbutler4 committed Sep 20, 2024
1 parent af9513c commit c92ea46
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class WalletActivity : ComponentActivity() {


Text(
text = "$11,625.48",
text = "$11,625.48", // TODO(#82): load actual balance
fontFamily = FontFamily(Font(R.font.inter_regular)),
color = Color.White,
fontSize = 28.sp,
Expand All @@ -113,7 +113,7 @@ class WalletActivity : ComponentActivity() {
.padding(top = 70.dp)
)
Text(
text = "0xfoo...123",
text = "0xfoo...123", // TODO(#82): load actual address
fontFamily = FontFamily(Font(R.font.inter_regular)),
color = Color.White,
fontSize = 16.sp,
Expand All @@ -122,13 +122,15 @@ class WalletActivity : ComponentActivity() {

Spacer(modifier = Modifier.height(32.dp))

// TODO(#82): load actual balance
WalletCard(
icon = painterResource(id = R.drawable.ic_ethereum),
amount = "$11,625.7",
exchange = 4.44,
type = "ETH"
)

// TOOD(#82): load actual balance
WalletCard(
icon = painterResource(id = R.drawable.token2),
amount = "$1.78",
Expand Down Expand Up @@ -400,8 +402,3 @@ fun SwitchNetwork(

}
}





0 comments on commit c92ea46

Please sign in to comment.