1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-3444 Chats | Enhancement | Bookmark flow updates (#2399)

This commit is contained in:
Evgenii Kozlov 2025-05-14 17:09:31 +02:00 committed by GitHub
parent 191b675fc9
commit 1d8501f7a0
Signed by: github
GPG key ID: B5690EEEBB952194
20 changed files with 282 additions and 15 deletions

View file

@ -16,7 +16,7 @@ class CreateBookmarkViewModel() : ViewStateViewModel<ViewState>() {
sealed class ViewState {
data class Success(val url: String) : ViewState()
data class Error(val message: String) : ViewState()
object Exit : ViewState()
data object Exit : ViewState()
}
class Factory() : ViewModelProvider.Factory {