Card header icon positioned to the right

19,279

Solution 1

I finally figured out the ultimate solution. It is just adding style="float:right;"

...
<ion-card *ngFor="let account of Accounts">
<ion-card-header>
    <span style="color:blue">{{account.title}}</span>
    <ion-icon style="float: right;" (click)="takeAction(account.$key)" name="more">
  </ion-icon>
</ion-card-header>
<ion-card-content>
  <h5>Bank: <b>{{account.bank}}</b></h5>
  <h5>Ac name: <b>{{account.acname}}</b></h5>
  <h5>Ac name: <b>{{account.acno}}</b></h5>
</ion-card-content>

Notice how I placed the ion-header contents into an ion-item element

Solution 2

You could try using ion-row and ion-col with col-{width}.

<ion-card-header>
<ion-row justify-content-between>
  <ion-col col-11>      
    <span item-left>{{account.title}}</span>
  </ion-col>
  <ion-col col-1>
    <span item-right><ion-icon (click)="takeAction(account.$key)" name="more"></ion-icon></span>
   </ion-col>
</ion-card-header>

They are both components of ion-grid which works similar to the grid layout of bootstrap.

Share:
19,279
Emeka Obianom
Author by

Emeka Obianom

By Day: I work at a manufacturing company. By Night: I document and code mobile app ideas and play with my family. For Hobby: I love to watch YouTube videos, read the Bible, research on some programming problems.

Updated on August 07, 2022

Comments

  • Emeka Obianom
    Emeka Obianom over 1 year

    I am having a little challenge trying to re-position an icon in an ion-card header to the right. Check my code samples and pictures below.

    this is my code

    ...
    <ion-card *ngFor="let account of Accounts">
    <ion-card-header>      
    <span item-left>{{account.title}}</span>
    <span item-right><ion-icon (click)="takeAction(account.$key)" name="more"></ion-icon></span>
    </ion-card-header>
    <ion-card-content>
      <h5>Bank: <b>{{account.bank}}</b></h5>
      <h5>Ac name: <b>{{account.acname}}</b></h5>
      <h5>Ac name: <b>{{account.acno}}</b></h5>
    </ion-card-content>
    

    Click to view picture for the above code

    but the picture below shows what i would love to achieve

    Click to view picture for my expectation