You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
390 B

import androidx.compose.ui.window.ComposeUIViewController
import platform.UIKit.UIViewController
fun ChatViewController(): UIViewController = ComposeUIViewController {
ChatApp(displayTextField = false)
}
fun sendMessage(text: String) {
store.send(Action.SendMessage(Message(myUser, text)))
}
fun gradient3Colors() = ChatColors.GRADIENT_3
fun surfaceColor() = ChatColors.SURFACE