Add language-only opponent personas
This commit is contained in:
@@ -52,6 +52,7 @@ fun TableScreen(vm: PokerViewModel) {
|
||||
val offer = state.liveOffer(rawOffer)
|
||||
val handSummary = state.visibleHandSummary()
|
||||
val coachReview = state.visibleCoachReview()
|
||||
val tableTalk = state.visibleTableTalk()
|
||||
val status = snap?.let(::tableStatus)
|
||||
|
||||
Column(
|
||||
@@ -116,6 +117,15 @@ fun TableScreen(vm: PokerViewModel) {
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
)
|
||||
Text(
|
||||
text = tableTalk?.let { "${it.speakerName}: “${it.text}”" }.orEmpty(),
|
||||
color = Color.White.copy(alpha = 0.68f),
|
||||
fontSize = 12.sp,
|
||||
fontWeight = FontWeight.Medium,
|
||||
modifier = Modifier.height(22.dp),
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
)
|
||||
Spacer(Modifier.height(4.dp))
|
||||
Row(horizontalArrangement = Arrangement.spacedBy(4.dp)) {
|
||||
val board = snap?.board.orEmpty()
|
||||
|
||||
Reference in New Issue
Block a user