Last active
June 21, 2021 16:27
-
-
Save sergenes/9657b7c65fd69c8e4c48deb7c5cad2e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum class RowType { | |
TOP, MIDDLE, BOTTOM, SINGLE | |
} | |
@Composable | |
fun HomeListItem( | |
title: String, | |
subTitle: String, | |
type: RowType, | |
editMode: Boolean = false, | |
onClick: () -> Unit, | |
onDelete: () -> Unit | |
) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment