如何在ionic 2 / typescript中使用自定义类

时间:2018-08-20 19:09:40

标签: ionic2

我在variables.scss中添加了自定义样式以更改alert,但不确定如何应用。我已经看过this question,但对我没有帮助。我必须把它放在我的typescript中吗?如果是,怎么办?

我的variabless.scss

.alert-wrapper {
  border-radius: 13px;
  overflow: hidden;
  max-width: 270px;
  background-color: #f8f8f8;
  -webkit-box-shadow: none;
  box-shadow: none;
}

我的html呼叫提醒

<button ion-button color="babydanger" (click)="showCheckbox()">SIGN UP</button>

我的.ts

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'
    });

0 个答案:

没有答案