feat: enable horizontal scrolling for the BLM table container

This commit is contained in:
2026-06-12 15:27:58 +01:00
parent 5bd096f54b
commit 4a5379e3a1
@@ -4,6 +4,7 @@ import androidx.compose.foundation.background
import androidx.compose.foundation.border import androidx.compose.foundation.border
import androidx.compose.foundation.layout.* import androidx.compose.foundation.layout.*
import androidx.compose.foundation.rememberScrollState import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.horizontalScroll
import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.* import androidx.compose.material3.*
@@ -71,7 +72,9 @@ fun BLMTableScreen(
Spacer(modifier = Modifier.height(16.dp)) Spacer(modifier = Modifier.height(16.dp))
// Table container // Table container
Column { Column(
modifier = Modifier.horizontalScroll(rememberScrollState())
) {
// MAP headers (top) // MAP headers (top)
Row { Row {
// Empty corner cell // Empty corner cell