Package-level declarations

Types

Link copied to clipboard
interface LikeApiState

Sealed interface representing the state of the Like API.

Link copied to clipboard
data class LikeListState(val likeList: List<Like> = listOf())

Data class representing the state of the Like list.

Link copied to clipboard
class LikeViewModel(likeRepository: LikeRepository) : ViewModel

ViewModel for managing Like data.

Functions

Link copied to clipboard
fun LikesScreen(likeViewModel: LikeViewModel = viewModel(factory = LikeViewModel.Factory))

Composable function for the LikesScreen.