I have an overall composable with a title composable with text - beneath a lazycolumn composable and beneath again a composable with a button
Column(horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier
.fillMaxWidth()
.background(Color(0xFFFAD173))
) {
DCLCTitle()
DCList(ListDSState)
DCListButton()
}
It is ok, when the list contains only a small number of items - but when it holds maybe 50 items - then the lazycolumn overlapping the button and the button vanished - how can I set the three parts maybe to 20/60/20 or to title/buttom/layzcolumn remaining space
Help would be great