Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
greenart7c3 committed Aug 9, 2024
1 parent d6ef32d commit 334956d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
applicationId = "com.greenart7c3.phoenixd"
minSdk = 26
targetSdk = 34
versionCode = 8
versionName = "0.0.8"
versionCode = 9
versionName = "0.0.9"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
10 changes: 6 additions & 4 deletions app/src/main/java/com/greenart7c3/phoenixd/screens/MainScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,12 @@ fun MainScreen(
}
}
payment.description?.let {
Text(
it,
modifier = Modifier.padding(8.dp),
)
if (it.isNotBlank()) {
Text(
it,
modifier = Modifier.padding(8.dp),
)
}
}
}
}
Expand Down

0 comments on commit 334956d

Please sign in to comment.