refactor: migrate MessagesFragment to Compose (#1444)

This commit is contained in:
Andre K 2024-11-30 23:20:09 -03:00 committed by GitHub
parent 5d3b36532f
commit 3c581f81a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 414 additions and 477 deletions

View file

@ -181,6 +181,9 @@ enum class AdminRoute(@StringRes val title: Int) {
}
sealed interface Route {
@Serializable
data class Messages(val contactKey: String, val message: String = "") : Route
@Serializable
data class RadioConfig(val destNum: Int? = null) : Route
@Serializable data object User : Route