Colton Idle
align
@Composable fun bottomAlignedImage(){ Image( modifier = Modifier.fillMaxWidth().align(Alignment.BottomCenter), painter = painterResource(id = R.drawable.myImage), contentDescription = null )}
nitrog42
fun bottomAlignedImage(modifier: Modifier = Modifier) { Image(modifier = modifier...)
bottomAlignedImage(Modifier.align(Alignement.BottomCenter)
@Composable fun BoxScope.bottomAlignedImage(){
A modern programming language that makes developers happier.