iosactionscript-3flash-builderstarling-frameworkfeathers-ui

Adobe Air 23 + iOS 10.1.1 full screen


I am using Air latest version with Starling and feathers latest versions.

My problem is how my application is not getting full height on iPhone 6 latest iOS (version 10.1.1) I am also using launch images and they are working correctly on the device. See iPhone screen photo.

Any idea to fix this issue?


Solution

  • the best practice i know is using a parent container instead stage, a root child of stage which would be parent of everything

    for example root_container

    stage.align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    root_container.width = stage.fullScreenWidth;
    root_container.height = stage.fullScreenHeight;
    

    Note: if your app is responsible to orientation changes, you have to handle them as your wish