Popover & Callout

Popover

Uses an HTML element to show it within an small layout within any component.

Example

<div class="evan-popover top-right">
  ...
</div>

View Example

../../_images/popover.png

Callout

Uses an ion-select and removes the default select styles to show only a simple callout.

Example

<ion-select class="evan-callout" interface="popover" #rootDAppSelect
  [(ngModel)]="rootDAppSelectValue"
  [selectOptions]="footerSelectOptions"
  (ionChange)="openDApp(rootDAppSelect)">
  <ion-option *ngFor="let rootDApp of rootDApps"
    [value]="rootDApp">
    {{ rootDApp?.translated.name }}
  </ion-option>
</ion-select>

View Example

../../_images/callout.png