Skip to content

Commit

Permalink
Hide verification method and binary tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliano1612 committed Oct 2, 2024
1 parent e5c0f7d commit a1c3806
Showing 1 changed file with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,24 +108,24 @@ fun VerifierHomeBody(
.fillMaxWidth()
.verticalScroll(rememberScrollState())
) {
VerifierListItem(
title = "Driver's License Document",
description = "Verifies physical driver's licenses issued by the state of Utopia",
binary = true,
fields = 0,
modifier = Modifier.clickable {
navController.navigate(Screen.VerifyDLScreen.route)
}
)
VerifierListItem(
title = "Employment Authorization Document",
description = "Verifies physical Employment Authorization issued by the state of Utopia",
binary = true,
fields = 0,
modifier = Modifier.clickable {
navController.navigate(Screen.VerifyEAScreen.route)
}
)
// VerifierListItem(
// title = "Driver's License Document",
// description = "Verifies physical driver's licenses issued by the state of Utopia",
// binary = true,
// fields = 0,
// modifier = Modifier.clickable {
// navController.navigate(Screen.VerifyDLScreen.route)
// }
// )
// VerifierListItem(
// title = "Employment Authorization Document",
// description = "Verifies physical Employment Authorization issued by the state of Utopia",
// binary = true,
// fields = 0,
// modifier = Modifier.clickable {
// navController.navigate(Screen.VerifyEAScreen.route)
// }
// )
VerifierListItem(
title = "Verifiable Credential",
description = "Verifies a verifiable credential by reading the verifiable presentation QR code",
Expand Down Expand Up @@ -161,7 +161,7 @@ fun VerifierListItem(
color = TextHeader,
modifier = Modifier.weight(2f)
)
VerifierListItemTag(binary = binary, fields = fields)
// VerifierListItemTag(binary = binary, fields = fields)
Spacer(modifier = Modifier.weight(1f))
Image(
painter = painterResource(id = R.drawable.arrow_right),
Expand Down

0 comments on commit a1c3806

Please sign in to comment.