Skip to content

QtWS: Super Early Bird Tickets Available!

  • 0 Votes
    3 Posts
    2k Views
    GTDevG

    Hi!
    Another option (but also QML only) is the AppDrawer available with V-Play Engine.
    Android Navigation

    It is also possible to use the Navigation type to create a menu that uses a drawer on Android and a tab-bar on iOS.

    iOS Navigation

    For example like this:

    import VPlayApps 1.0 App { Navigation { NavigationItem { title: "Home" icon: IconType.home NavigationStack { Page { title: "Main Page" } } } NavigationItem { title: "Lists" icon: IconType.list NavigationStack { Page { title: "Lists" } } } } }

    Best,
    GT

  • 0 Votes
    4 Posts
    2k Views
    T

    Hi p3c0,

    now i found a solution for my problem, maybe yo mean that and i don´t unterstand it :)
    i only put the SwipeArea into the ListView like the following example.

    ListView { id: id_left_listview anchors.fill: parent .... SwipeArea { anchors.fill: parent // propagateComposedEvents: true .... } }

    Thanks a lot for your help.

    Greetings Tobias