We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4187acd commit 1c95b23Copy full SHA for 1c95b23
1 file changed
demo-common/src/commonMain/kotlin/com/seanproctor/datatable/demo/App.kt
@@ -20,7 +20,7 @@ import kotlin.math.min
20
@OptIn(ExperimentalMaterial3Api::class)
21
@Composable
22
fun App(onRowClick: (Int) -> Unit) {
23
- Surface {
+ Surface(Modifier.fillMaxSize()) {
24
Column {
25
var selectedIndex by remember { mutableStateOf(0) }
26
PrimaryTabRow(
0 commit comments