Skip to content

Instantly share code, notes, and snippets.

@enginebai
Created January 9, 2022 10:02
Show Gist options
  • Save enginebai/b6a226557bf05b9926dddea569ef23ab to your computer and use it in GitHub Desktop.
Save enginebai/b6a226557bf05b9926dddea569ef23ab to your computer and use it in GitHub Desktop.
@Composable
fun MovieInfoWidget(
posterUrl: String? = null,
movieName: String? = null,
isBookmark: Boolean = false,
rating: Float = 0.0f,
ratingTotalCountText: String? = null,
genres: String? = null,
releaseDateText: String? = null,
runtimeText: String? = null,
overview: String? = null,
onBackButtonClicked: () -> Unit = {}
) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment