App not fitting the screen in windows phone 8 wp8

Hey guys, why is my app is not fitting the screen correctly on a nokia windos phone?
I know wp8 is not fully supported but how can I solve this? Any ideia what may be causing this issue?

there is a simple fix… in your mainpage.xaml modify the code to hide the system try…
as follows
original:

 shell:SystemTray.IsVisible="True" 

change to

 shell:SystemTray.IsVisible="False" 

should be line 32 on mainpage.xaml

Also to show the icon… use the online cdn to ionic framewok

<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/1.4.1/css/ionicons.min.css">

in you index.html

2 Likes

Just perfect!
Thanks!