Reputation: 1104
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.
Upvotes: 1
Views: 651
Reputation: 67423
You can use contentAlignment = Alignment.CenterStart
with Box.
Box(
modifier = Modifier
.clickable {
}
.fillMaxWidth()
.height(46.dp),
contentAlignment = Alignment.CenterStart
) {
Text("Hello World")
}
Upvotes: 3