What's the correct way to add some padding at begi...
# compose
a
What's the correct way to add some padding at begining of
LazyXxxx
that scrolls with the content? ON this example the circles must scroll to the start (left) of the screen, but start with some extra padding
I've tried:
Copy code
LazyRow(modifier = Modifier.padding(start = 16.dp) {
 ...
}
Ok,
contentPadding
☝🏻 1
h
My first thought was to just add something like this to the beginning
Copy code
item {
  Spacer(Modifier.width(16.dp))
}
😅