IONIC-2 Beta版でひとつのアプリを作ります。私は Checkbox Alert Controller を使用しており、次のような画像を追加したいと考えています。
私のコードは
showCheckbox() {
let alert = this.alertCtrl.create();
alert.setTitle('Which planets have you visited?');
alert.addInput({
type: 'checkbox',
label: 'Alderaan',
value: 'value1',
checked: true
});
alert.addInput({
type: 'checkbox',
label: 'Bespin',
value: 'value2'
});
alert.addButton('Cancel');
alert.addButton({
text: 'Okay',
handler: data => {
console.log('Checkbox data:', data);
this.testCheckboxOpen = false;
this.testCheckboxResult = data;
}
});
alert.present();
}
このような画像を追加することは可能ですか??
誰かが解決策を知っているなら、私を助けてください。
ありがとう。