GalleryDetailState
data class GalleryDetailState(val loading: Boolean = true, val tabs: List<GalleryDetailTab> = emptyList(), val selectedTab: GalleryDetailTab = GalleryDetailTab.IMAGE, val dialog: GalleryDetailDialog = GalleryDetailDialog.None, val content: GalleryDetailContent? = null) : MviState(source)
Carries GalleryDetailState data through the SDAI presentation layer.
Author
Dmitriy Moroz
Constructors
Link copied to clipboard
constructor(loading: Boolean = true, tabs: List<GalleryDetailTab> = emptyList(), selectedTab: GalleryDetailTab = GalleryDetailTab.IMAGE, dialog: GalleryDetailDialog = GalleryDetailDialog.None, content: GalleryDetailContent? = null)
Properties
Link copied to clipboard
Exposes the content value used by the SDAI presentation layer.
Link copied to clipboard
Exposes the dialog value used by the SDAI presentation layer.
Link copied to clipboard
Exposes the selectedTab value used by the SDAI presentation layer.
Link copied to clipboard
Exposes the tabs value used by the SDAI presentation layer.