This commit is contained in:
callebtc
2025-07-12 02:58:30 +02:00
parent 50995c670f
commit 8e93500823
@@ -53,7 +53,8 @@ fun MessageInput(
currentChannel != null -> Color(0xFFFF9500) // Orange for channels too currentChannel != null -> Color(0xFFFF9500) // Orange for channels too
else -> colorScheme.primary else -> colorScheme.primary
}, },
fontFamily = FontFamily.Monospace fontFamily = FontFamily.Monospace,
fontSize = 14.sp
) )
Spacer(modifier = Modifier.width(8.dp)) Spacer(modifier = Modifier.width(8.dp))
@@ -96,7 +97,7 @@ fun MessageInput(
contentAlignment = Alignment.Center contentAlignment = Alignment.Center
) { ) {
Icon( Icon(
imageVector = Icons.Filled.KeyboardArrowUp, imageVector = Icons.Filled.KeyboardArrowRight,
contentDescription = "Send message", contentDescription = "Send message",
modifier = Modifier.size(20.dp), modifier = Modifier.size(20.dp),
tint = if (selectedPrivatePeer != null || currentChannel != null) { tint = if (selectedPrivatePeer != null || currentChannel != null) {