There's no need for it, use normal padding modifier, just make sure to apply it after the scroll modifier:
Modifier.scrollable().padding()
In Lazy lists, you don't apply scrolling modifier yourself, so
padding
always sets the outer padding and
contentPadding
is needed to set the inner padding. This is not the case with
scrollable
and others, where you can do:
Modifier
.padding() //outer
.scrollable()
.padding() //inner