0

How can I put the text in the center of the total clickable area and still in the start of the component?

Like an android:layout_gravity="center" with margin.

enter image description here

Tarsila Costalonga
  • 924
  • 2
  • 11
  • 21

1 Answers1

2

You can use contentAlignment = Alignment.CenterStart with Box.

Box(
    modifier = Modifier
        .clickable {
            
        }
        .fillMaxWidth()
        .height(46.dp),
    contentAlignment = Alignment.CenterStart
) {
    Text("Hello World")
}
Thracian
  • 43,021
  • 16
  • 133
  • 222