You can separate your StickyHeader and LazyRow into two distinct parts within a Column:
StickyHeader
LazyRow
Column
Column(modifier = modifier) { StickyHeader() LazyRow() { // yourItems() } }