Native Mobile Header

0
How to add a toggle menu in Native Mobile Layout. Toggle menu is essential for mobile apps. Left side I want to add a back button and right side I want to add a toggle menu How come its not available in Mendix Native 9.9.1.? Anyone know how to implement.
asked
1 answers
0

I have implemented a similar header in my native app.
For back button, I used an image of back arrow. Placed this image inside a container with some padding in container to increase the clickable area around image. Then I set the on click action of that container to close page.

For toggle menu, I used the widget “Pop-up menu”. Its part of native mobile resources package and I think this package is by default part of a new native app project. You can set an image to use as toggle menu button, and on click of that image, a menu will open. You can specify menu items for it. Below is link for details of this widget
https://docs.mendix.com/appstore/modules/native-mobile-resources#popup-menu

answered