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

DROID-362 Editor | Hide loading state on non exist state (#2535)

Co-authored-by: konstantiniiv <ki@anytype.io>
This commit is contained in:
Konstantin Ivanov 2022-08-18 14:11:18 +02:00 committed by GitHub
parent 398aeac3a1
commit c115653a04
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1217,6 +1217,7 @@ open class EditorFragment : NavigationFragment<FragmentEditorBinding>(R.layout.f
ViewState.Loading -> {}
ViewState.NotExist -> {
binding.recycler.gone()
binding.loadingContainer.root.gone()
binding.objectNotExist.root.visible()
}
}