Ionic 3 create checkbox dynamic

hello everyone
iam new to ionic.
i want to create check boxes dynamicaly in ionic 3.
iam trying to call an api which return any array of item name.so i need to create check boxes for each item.
how it is possible in ionic 3

Hi@sreejith13
You can use ionic select component for checkbox functionality with multiple=true condition
You can create checkbox dynamically something like this

<ion-select multiple="true">
		<ion-option *ngFor="let option of items?.values" value="{{option?.value}}">{{option?.text}}
               </ion-option>
</ion-select>