0

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?

Vojtech Ruzicka
  • 16,384
  • 15
  • 63
  • 66
  • 1
    If you have a working solution then mark it as correct using the `✓` tick symbol. It helps others too. – VC.One Nov 29 '16 at 01:42

1 Answers1

1

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

payam_sbr
  • 1,428
  • 1
  • 15
  • 24