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