Asad Mukhtar
08/11/2022, 8:21 AMColumn(
modifier = Modifier
.fillMaxSize(1f)
.background(color = Color.White)
.verticalScroll(state = rememberScrollState(),
) {
HeaderSection("Welcome!", "It's great to have you here") {
viewModel.events.postValue(AuthModuleClickEventsObject.BACK_CLICK)
}
ContentSection(
modifier = Modifier
.background(
color = Color(0xFFF3F6F9),
shape = RoundedCornerShape(topStart = 34.dp, topEnd = 34.dp)
)
.fillMaxWidth()
.fillMaxHeight()
.padding(horizontal = 17.5.dp),
{}, {
viewModel.events.postValue(AuthModuleClickEventsObject.FORGOT_PASSWORD_CLICK_EVENT)
})
}
Zoltan Demant
08/11/2022, 11:02 AMfillMaxSize
and fillMaxHeight
first, could you please check if scrolling works without them?Asad Mukhtar
08/11/2022, 1:47 PMZoltan Demant
08/11/2022, 2:01 PMAsad Mukhtar
08/11/2022, 6:57 PMOleksandr Balan
08/11/2022, 7:01 PM