Hi guys,
i want to add a clear button with small image to the bottom right of a ionic card but i fail. At the moment the button appears in the middle of the bottom of the card.
Please advise me.
Here’s my code so far
<ion-card>
<ion-card-content>
<span class="commenter">{{item.name}}</span>
<p class="commentMessage">{{item.message}}</p>
<p class="commentTimestamp">{{item.dateTime | amTimeAgo}}</p>
<ion-button *ngIf="item.groupId" fill="clear" size="small" color="danger" (click)="itemSelected(item)">
<ion-icon slot="start" name="share-alt"></ion-icon>
Share
</ion-button>
</ion-card-content>
</ion-card>