nativescript-angular
nativescript-angular copied to clipboard
Integrating NativeScript with Angular
**Environment** - Android Runtime: 8.0.0 - NativeScript-Angular: 8.0.1 - Angular: 11.2.6 I'm getting my feet wet with NativeScript with Angular and have created a new blank Hello World projects using...
I prefer to use ListView over RadListView because it's much more performant, however I can't get there is no onScroll event from ListView. Any tips or links to how I...
**Environment** "dependencies": { "@angular/animations": "~9.1.4", "@angular/common": "~9.1.4", "@angular/compiler": "~9.1.4", "@angular/core": "~9.1.4", "@angular/forms": "~9.1.4", "@angular/platform-browser": "~9.1.4", "@angular/platform-browser-dynamic": "~9.1.4", "@angular/router": "~9.1.4", "@nativescript/schematics": "^1.0.0", "@nativescript/theme": "~2.3.3", "nativescript-angular": "~8.21.0", "nativescript-ui-sidedrawer": "~8.0.0", "reflect-metadata": "~0.1.12", "rxjs":...
Here is my routing: ```TS const routes: Routes = [ { path: "", redirectTo: "/tabs/default", pathMatch: "full" }, { path: "tabs", loadChildren: "~/app/modules/tabs/tabs.module#TabsModule" }, { path: "login", loadChildren: "~/app/modules/login/login.module#LoginModule" },...
Hello, I am trying to implement image caching on angular however there is no example how to do this. In general example view model is updated however in angular there...
i was migrating my existing web photoviewer Ionic app to nativescript app. but i am getting navigation lags. when navigation to new route and navigating back to previous page app...
**Environment** √ Component nativescript has 7.0.11 version and is up to date. √ Component @nativescript/core has 7.0.13 version and is up to date. √ Component @nativescript/android has 7.0.1 version and...
onCheckChange(event) { const formArrayItem: FormArray = this.createSubscrition.get('weekDays') as FormArray; console.log(formArrayItem) if(event.target.checked){ console.log(event.target.value); formArrayItem.push(new FormControl(event.target.value)) } else{ let i: number = 0; formArrayItem.controls.forEach((ctrl: FormControl) => { if(ctrl.value == event.target.value) { formArrayItem.removeAt(i);...
**Environment:** Angular CLI: 11.2.3 Angular: 11.0.9 Node: 14.16.0 Typescript: 4.0.5 Nativescript: 7.1.2 I am having an issue when i scroll my main page in my NS app. The page contains...
The outdated nativescript upgrade docs has a command to upgrade all angular deps to the latest by: ``` npm i nativescript-angular@latest --save ./node_modules/.bin/update-app-ng-deps npm i ``` but now in nativescript...