Files
coop-mobile/composeApp/src/androidMain/kotlin/su/reya/coop/screens/ChatScreen.kt
T
2026-04-27 12:14:54 +07:00

16 lines
455 B
Kotlin

package su.reya.coop.screens
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
@Composable
fun ChatScreen(id: String) {
Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
Text("Chat Screen (ID: $id)")
}
}