Asad Mukhtar
Column( 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
fillMaxSize
fillMaxHeight
Oleksandr Balan
A modern programming language that makes developers happier.