Browse Source

fix ChatApp time of message

pull/4381/head
dima.avdeev 3 months ago
parent
commit
37bbc84e4b
  1. 2
      examples/chat/shared/src/iosMain/kotlin/main.ios.kt

2
examples/chat/shared/src/iosMain/kotlin/main.ios.kt

@ -6,7 +6,7 @@ fun ChatViewController(): UIViewController = ComposeUIViewController {
}
fun sendMessage(text: String) {
store.send(Action.SendMessage(Message(myUser, timestampMs(), text)))
store.send(Action.SendMessage(Message(myUser, text)))
}
fun gradient3Colors() = ChatColors.GRADIENT_3

Loading…
Cancel
Save