Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. RowLayout overlap when resize the app
Qt 6.11 is out! See what's new in the release blog

RowLayout overlap when resize the app

Scheduled Pinned Locked Moved Unsolved General and Desktop
1 Posts 1 Posters 454 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    aquiles011
    wrote on last edited by
    #1

    Hello,

    I created a layout for my app, inside a Flickable put a ColumnLayout
    with 3 RowLayout, inside each RowLayout I put a ListView, like show in
    the code at the end. The app show like in the following link

    http://imgur.com/a/yftsQ

    But when I change the size of the app the last RowLayout overlap with
    the second RowLayout

    http://imgur.com/a/xHeA6

    I would wait that when resize the app use the scroll for the items that
    can't show, but instead of, overlap them.

    Any idea how can I solve this issue?

    Flickable {
    
        anchors.fill: parent
    
        ColumnLayout {
    
            Layout.fillHeight: true
    
            RowLayout {}
    
            RowLayout {}
    
            RowLayout {}
    
        }
    
    
        ScrollBar.vertical: ScrollBar {
                    //id: vScrollBar
                    active: true
                }
    
    }
    
    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved