Answers for "jetpack compose Text align bottom start"

0

jetpack compose Text align bottom start

Box( 
    modifier = Modifier.fillMaxSize(),
    contentAlignment = Center
) {
    Text(
        text = "Text",
    )
}
Posted by: Guest on March-18-2022
0

jetpack compose Text align bottom start

Column(
    modifier = Modifier.fillMaxSize(),
    verticalArrangement = Arrangement.Center,
    horizontalAlignment = Alignment.CenterHorizontally
) {
    Text(
        text = "Text",
    )
}
Posted by: Guest on March-18-2022

Code answers related to "jetpack compose Text align bottom start"

Browse Popular Code Answers by Language