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