mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
29 lines
654 B
HTML
29 lines
654 B
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-title>Agenda</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content>
|
|
<ion-toolbar *ngIf="!ios">
|
|
<ion-segment [(ngModel)]="segment">
|
|
<ion-segment-button value="combinada">
|
|
Combinada
|
|
</ion-segment-button>
|
|
<ion-segment-button value="oficial">
|
|
Oficial
|
|
</ion-segment-button>
|
|
<ion-segment-button value="pessoal">
|
|
Pessoal
|
|
</ion-segment-button>
|
|
</ion-segment>
|
|
</ion-toolbar>
|
|
|
|
|
|
<ion-fab vertical="bottom" horizontal="end" slot="fixed">
|
|
<ion-fab-button>
|
|
<ion-icon name="create"></ion-icon>
|
|
</ion-fab-button>
|
|
</ion-fab>
|
|
</ion-content>
|