5

I have a rectangle with a Text and a Flickable in a vertical layout. When I flick the contents of flickable vertically it goes in front of the Text component. How can I make it go behind? How can I make contents of a flickable hide when moving outside its boundaries?

uniquenamehere
  • 1,869
  • 3
  • 31
  • 60

1 Answers1

14
Flickable {
    clip: true

    // ...
}
Simon Warta
  • 10,850
  • 5
  • 40
  • 78