Hi,

again I am completely stuck here. I would like to create column with two rows. The first row I kind of a title row and shall stay at the top. The second "row" contains a ListView with logs. I would like to have this ListView scrollable but I am just not getting it right.
This is my structure:
Qt Code:
  1. SilicaFlickable {
  2. Column {
  3. Row { // Title }
  4. Flickable {
  5. width: page.width
  6. height: column.height - titleRow.height
  7. flickableDirection: Flickable.VerticalFlick
  8.  
  9. VerticalScrollDecorator {}
  10. clip: true
  11.  
  12. ListView {}
  13. }
  14. }
  15. }
To copy to clipboard, switch view to plain text mode 

The ListView is scrolling now but as soon as I leave it it scrolles back to it initial state. How can I prevent that or how can I do this better?

Thanks