Skip to content
  • Android menu without qml etc.

    Unsolved Mobile and Embedded android qmenu options menu
    5
    0 Votes
    5 Posts
    2k Views
    GTDevG
    Hi, for an easy native-styled Android menu (QML-based though), you can also have a look at V-Play Engine, which extends Qt and handles native features and styling for Android and iOS. E.g. for a native styled Navigation, with the V-Play Navigation Components: import VPlayApps 1.0 App { Navigation { NavigationItem { title: "Home" icon: IconType.home NavigationStack { Page { title: "Home" } } } NavigationItem { title: "Favorites" icon: IconType.star NavigationStack { Page { title: "Favorites" } } } } } Best, GTDev