Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Forums

OverviewFelgo 3 Support (Qt 5) › Scrollable Menu Example

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12232

    Kool

    Hi guys,

    Is there an example of a scrollable menu?

    The ideal menu would handle both drags and swipes.

    Cheers!

    #12240

    Günther
    Felgo Team

    Hi KoolBanana!

    There are several QML components that allow to implement such scroll features, like ScrollView or Flickable.
    For example:

      Scene {
        id: scene
    
        // the "logical size" - the scene content is auto-scaled to match the GameWindow size
        width: 480
        height: 320
    
        Flickable {
          width: parent.width
          height: parent.height
          contentWidth: content.width
          contentHeight: content.height
    
          Item {
            id: content
            width: parent.width // content fills width
            height: childrenRect.height // total height of children
    
            // add some dummy items
            Repeater {
              model: 20
              delegate: Text {
                anchors.horizontalCenter: parent.horizontalCenter
                y: index * height
                width: 50
                height: 40
                text: "Item #"+index
              }
            }
          }
        }
      }

     

    Cheers,
    Günther

    #12242

    Kool

    Thanks Günther, that’ll be a good start to what I have in mind!

Viewing 3 posts - 1 through 3 (of 3 total)

RSS feed for this thread

You must be logged in to reply to this topic.

Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded