From c7d4b79180f0dd2558ec0058d392c144ca5f0ed5 Mon Sep 17 00:00:00 2001 From: Kris <40046803-KrisKS@users.noreply.gitlab.com> Date: Mon, 17 Aug 2026 12:11:34 -0400 Subject: [PATCH] Update 2.0 bond stats layout --- .../today/notfeelingit/lcdpet/MainActivity.kt | 48 +++++-------------- 1 file changed, 11 insertions(+), 37 deletions(-) diff --git a/app/src/main/java/today/notfeelingit/lcdpet/MainActivity.kt b/app/src/main/java/today/notfeelingit/lcdpet/MainActivity.kt index fa760df..ab1dd51 100644 --- a/app/src/main/java/today/notfeelingit/lcdpet/MainActivity.kt +++ b/app/src/main/java/today/notfeelingit/lcdpet/MainActivity.kt @@ -4204,64 +4204,38 @@ fun Greeting(name: String, modifier: Modifier = Modifier) { verticalArrangement = Arrangement.spacedBy(4.dp) ) { Text( - text = "PET RECORD", - fontWeight = FontWeight.Bold, - textAlign = TextAlign.Center, - modifier = Modifier.fillMaxWidth() + text = "Bond", + fontWeight = FontWeight.Bold ) Row { Text( - text = "Bond", - modifier = Modifier.width(92.dp), - maxLines = 1, - softWrap = false - ) - Text(text = "$bondPercent% $bondRelationship") - } - - Row { - Text( - text = "Age", - modifier = Modifier.width(92.dp), + text = "Time", + modifier = Modifier.width(104.dp), maxLines = 1, softWrap = false ) Text(text = petAgeText) } - - Row { Text( - text = "Care", - modifier = Modifier.width(92.dp), + text = "Strength", + modifier = Modifier.width(104.dp), maxLines = 1, softWrap = false ) - Text(text = "$careScore") + Text(text = "$bondPercent%") } Row { Text( - text = "Neglect", - modifier = Modifier.width(92.dp), + text = "Status", + modifier = Modifier.width(104.dp), maxLines = 1, softWrap = false ) - Text(text = "$neglectScore") - } - - - - if (testingMode) { - Row { - Text( - text = "Want", - modifier = Modifier.width(72.dp) - ) - Text(text = currentWant.ifBlank { "None" }) - } + Text(text = bondRelationship) } Spacer(modifier = Modifier.height(4.dp)) @@ -4311,7 +4285,7 @@ fun Greeting(name: String, modifier: Modifier = Modifier) { ) } else { LCDSubButton( - text = "TRADE PET IN", + text = "SET PET FREE", enabled = !isFindingNewPet, lcdDark = lcdDark, lcdFaded = lcdFaded,