I have a card element with a title and subtitle, and I want to add a black bar above the header.
<ion-list>
<ion-card (click)="onEventClick(event.id)" *ngFor="let event of events">
<ion-card-header>
<ion-card-subtitle>{{event.date}}</ion-card-subtitle>
<ion-card-title style="font-size:15px" text-wrap>{{event.title}}</ion-card-title>
</ion-card-header>
</ion-card>
</ion-list>
This is my desired outcome:
Here's what I've accomplished so far: