Is there a way to add padding to composable conten...
# compose
j
Is there a way to add padding to composable content's (direct) children? for example by a modifier? Something like
Copy code
@Composable
fun Content() {
   Column(Modifier.childPadding(inner = 4.dp)) {
       Text("...")
       Text("...")
       Text("...")
   }
}
g
Copy code
LazyColumn(
	contentPadding = PaddingValues(5.dp),
	modifier = Modifier.weight(1f)
)
So I guess there should be
contentPadding
on the normal Column too
h
Have you checked out the verticalArrangement argument? You can use
Arrangement.spacedBy(8.dp)
j
Have you checked out the verticalArrangement argument? You can use 
Arrangement.spacedBy(8.dp)
This is it, thank you!