alloy-widget-drawermenu
alloy-widget-drawermenu copied to clipboard
Trouble with android behavior
Hello, the widget runs perfectly in IOS, but in Android after the first open() call the other view in mainview gets cropped while in IOS it doesn't happend.
Could you provide an example?
I was experiencing the same. I visited the source code and noticed the line that sets the main window width:
if (OS_ANDROID) newWidth /= Ti.Platform.displayCaps.logicalDensityFactor;
You will get your desired outcome when you comment out the lines above.
Had same issue, commenting out that line as suggested works.