AlertController with line breaks and bullet points in it? Is it possible?

Yes and no:

  showAlert() {
    let alert = this.alertCtrl.create({
      title: `A Great Title`,
      message: `
        <p> A great title is unique and descriptive! It should highlight the main attractions of your space.</p>
        <p>Example</p>
        <ul>
          <li> Charming Victoria in the Mission.</li>
          <li>Cosy 2BD with Parking Included</li>
          <li>Amazing View from a Mordern Loft</li>
        </ul>
      `,
      buttons: ['Okay']
    });
    alert.present();
  }

25 Likes