This is a angular > 2.x module to get mobile (phone) number of user, this component implements ControlValueAccessor interface to compatible with reactive forms. # main features - country list - Set preferred countries list - Support country flags - defaul
npm install mobile-field-libnpm install mobile-field-lib`How to use
Import module to your main module
`ts
import {MobileFieldLibModule} from "mobile-field-lib";@NgModule({
declarations: [
AppComponent
],
imports: [
...,
MobileFieldLibModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
`use it at you html template:
`html
``