Harpreet Singh.8052
Surface( modifier = Modifier .fillMaxSize() .padding(padding) .background(MaterialTheme.colorScheme.background) ) { Column( modifier = Modifier .fillMaxSize() ) { Box( modifier = Modifier .background(MaterialTheme.colorScheme.background) .weight(.9f) .fillMaxWidth() ){//for messages LazyColumn(modifier = Modifier.fillMaxSize()) { itemsIndexed(messageList) { index, item -> Text(text = item.message, fontSize = 18.sp) } } } Box(){ //for input } } }
Zach Klippenstein (he/him) [MOD]
youssef
A modern programming language that makes developers happier.