Skip to content

Commit

Permalink
Rename app sections and hide utopia verification methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliano1612 committed Oct 7, 2024
1 parent e5c0f7d commit 70dc8be
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ fun VerifierHomeHeader(
) {
Row(verticalAlignment = Alignment.CenterVertically) {
Text(
text = "Spruce Verifier",
text = "SpruceKit Demo Verifier",
fontFamily = Inter,
fontWeight = FontWeight.SemiBold,
fontSize = 24.sp,
fontSize = 20.sp,
color = TextHeader
)
Spacer(Modifier.weight(1f))
Expand Down 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
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ fun WalletHomeView(
fun WalletHomeHeader(navController: NavController) {
Row(verticalAlignment = Alignment.CenterVertically) {
Text(
text = "Spruce Wallet",
text = "SpruceKit Demo Wallet",
fontFamily = Inter,
fontWeight = FontWeight.SemiBold,
fontSize = 24.sp,
fontSize = 20.sp,
color = TextHeader
)
Spacer(Modifier.weight(1f))
Expand Down

0 comments on commit 70dc8be

Please sign in to comment.