Skip to content

Commit

Permalink
Rename app sections (#38)
Browse files Browse the repository at this point in the history
This renames the wallet section "SpruceKit Demo Wallet" and the verifier section "SpruceKit Demo Verifier".
  • Loading branch information
Juliano1612 authored Oct 8, 2024
1 parent ac5b584 commit f41fa48
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "com.spruceid.mobilesdkexample"
minSdk = 26
targetSdk = 34
versionCode = 5
versionName = "1.0.0+5"
versionCode = 6
versionName = "1.0.0+6"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
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
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 f41fa48

Please sign in to comment.