You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To address Z-axis overlapping of "Command Status" and "Detected Commands"
cards, this commit wraps them (and their visibility conditions) in their
own dedicated `Column`. This new `Column` is a child of the main screen
`Column` in `PhotoReasoningScreen.kt`.
This change aims to ensure that these two cards are laid out sequentially
relative to each other. I will conduct further testing to determine if this group
is positioned correctly on the screen and if it still overlaps other
UI elements.
Text("${index +1}. $commandText", color =MaterialTheme.colorScheme.onTertiaryContainer)
433
+
if (index < detectedCommands.size -1) Divider(Modifier.padding(vertical =4.dp), color =MaterialTheme.colorScheme.onTertiaryContainer.copy(alpha =0.2f))
423
434
}
424
-
Text("${index +1}. $commandText", color =MaterialTheme.colorScheme.onTertiaryContainer)
425
-
if (index < detectedCommands.size -1) Divider(Modifier.padding(vertical =4.dp), color =MaterialTheme.colorScheme.onTertiaryContainer.copy(alpha =0.2f))
0 commit comments