i’ve updated my app from ionic 2 to ionic 3 and i’ve used Lazy loading
after that , i’ve faced many problems the worst one is :
No component factory found for SelectSearchablePageComponent. Did you add it to @NgModule.entryComponents?
page.html is :
<select-searchable class="selectMenu1" itemValueField="tid" itemTextField="name" [items]="types"
[canSearch]="true"
[canReset]="true"
(onChange)="portChange($event)" formControlName="carType">
</select-searchable>```
page.ts :
portChange(event: { component: SelectSearchable, value: any }) {
}