Table component for Kotlin Multiplatform
@Composable
table widget
Gradle configuration for Kotlin Multiplatform:
kotlin {
sourceSets {
commonMain.dependencies {
implementation("com.github.zakgof:table:1.0.1")
Table (lineWidth = 2.dp, lineColor = Color.BLUE) {
Row {
Text(text = "Cell 1")
Text(text = "Cell 2")
}
Row {
Text(text = "Long cell", modifier = Modifier.columnSpan(2))
}
}