Hi, I started to build a test using this tutorial https://www.nativescript.org/blog/using-nested-router-outlets-with-nativescript-and-angular
The problem is when navigate inside a TabView using nested <router-outlet>
, on iOS just shown a blank screen.
On android the same code works fine.
My application was create using this commando tns create Hello --ng
and I copied the code from the repository of tutorial with some adjusts to work
my package.json libraries
"tns-ios": {
"version": "4.0.1"
},
"tns-android": {
"version": "4.0.1"
}
"@angular/animations": "~5.2.0",
"@angular/common": "~5.2.0",
"@angular/compiler": "~5.2.0",
"@angular/core": "~5.2.0",
"@angular/forms": "~5.2.0",
"@angular/http": "~5.2.0",
"@angular/platform-browser": "~5.2.0",
"@angular/platform-browser-dynamic": "~5.2.0",
"@angular/router": "~5.2.0",
"nativescript-angular": "~5.3.0",
"nativescript-theme-core": "~1.0.4",
"reflect-metadata": "~0.1.8",
"rxjs": "~5.5.2",
"tns-core-modules": "~4.0.0",
"zone.js": "~0.8.2"
Screen:
Playground link: