Update 2.0 bond stats layout
This commit is contained in:
@@ -4203,65 +4203,39 @@ fun Greeting(name: String, modifier: Modifier = Modifier) {
|
||||
.padding(8.dp),
|
||||
verticalArrangement = Arrangement.spacedBy(4.dp)
|
||||
) {
|
||||
Text(
|
||||
text = "PET RECORD",
|
||||
fontWeight = FontWeight.Bold,
|
||||
textAlign = TextAlign.Center,
|
||||
modifier = Modifier.fillMaxWidth()
|
||||
)
|
||||
|
||||
Row {
|
||||
Text(
|
||||
text = "Bond",
|
||||
modifier = Modifier.width(92.dp),
|
||||
maxLines = 1,
|
||||
softWrap = false
|
||||
fontWeight = FontWeight.Bold
|
||||
)
|
||||
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,
|
||||
|
||||
Reference in New Issue
Block a user