forked from reya/coop-mobile
16 lines
455 B
Kotlin
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)")
|
|
}
|
|
}
|