Using Ionic Components

Since AppPresser is built using the Ionic Framework, you can use some of their UI component tags.

For example, they have pre-formatted elements like cards, circle avatars, buttons, icons, and more.

Here is an example, you could paste this code into a custom HTML page (and rebuild your app to see it in the preview):

<ion-card>
  <ion-card-header>
    Header
  </ion-card-header>
  <ion-card-content>
    The British use the term "header", but the American term "head-shot" the English simply refuse to adopt.
  </ion-card-content>
</ion-card>

<button ion-button>Button</button>

You can see all Ionic components in their documentation.

Note: you can only use UI components, anything that requires Javascript will not work. For example, you can use the ion-card, but not the action sheet or popover.