I have a simple html file:
<StackLayout orientation="vertical" actionBarHidden="true">
<Image src="res://buy" stretch="none" horizontalAlignment="center"></Image>
</StackLayout>
But when i use:
<Page actionBarHidden="true">
<StackLayout orientation="vertical">
<Image src="res://buy" stretch="none" horizontalAlignment="center"></Image>
</StackLayout>
</Page>
It breaks the page.. The action bar is not hidden and there is a huge margin between content and action bar.
I use angular2 and typescript for my app.
What's my mistake?
Any help much appreciated!