How we can fix the height of our list so that it won't scroll beyond that height

In this above image, the items are going above the Text, i want they should become invisible when started scrolling

Hello! I think enabling clipping on parent component would do the trick :slight_smile:

In the template add:

static _template() {
  rect: true,
  clipping: true,
...
}
1 Like