For our app development the regular menu is displayed when using the device in landscape mode.
Due to very limited space the menu should be shown in mobile mode.
In ApplicationFrameLayout a method is used to determine the mode:
const mobileMode = isOnSmallDevice(this.context?.currentSize);
On my test device I receive “xs” in portrait mode but “md” in landscape mode. So in landscape mode the menu is automatically set to non-mobile.
As the regular menu uses way too much space I would need to have an attribute to set the menu to mobile mode. Is there a possibility to force the mobile menu?