As we use BrowserModule for using ngModel in web area, and is imported by default while creating new ng app, what is the equivalent for this in NativeScript?
1 Answer
If you want to use ngModel to nativescript app, you could use NativeScriptFormsModule and import it to your app.module.ts as following:
import { NativeScriptFormsModule } from "nativescript-angular/forms"
you can check this link here
ngModelin nativescript app. NativeScript team has own equivalents for Angular's core modules. Is there anything forBrowserModuleor we can just use it?