If you want Page have a full-screen background, add your images to /App_Resources and do this in your component:
export class MyComponent implements OnInit { constructor(private page:Page) {} ngOnInit() { this.page.actionBarHidden = true; this.page.backgroundImage = "res://bg-image"; } }
Update: You can add CSS to enable full screen mode.
.page { background-size: cover; background-repeat: no-repeat; background-position: center top; }
Note. Assign this CSS class to your Page .
source share