james watt
james watt

Reputation: 135

Overlap a button over a list (Ionic)

I'm a beginner here. I want to put an add button over a list in ionic, but I can't understand if this is possible or not. Something like this

https://developer.android.com/design/material/images/list_mail.png

Is it possible in ionic? How I can code it?

Upvotes: 0

Views: 614

Answers (1)

AddWeb Solution Pvt Ltd
AddWeb Solution Pvt Ltd

Reputation: 21681

you can use ion-fab in ionic app over a list button like this,

<ion-fab right bottom>
    <button ion-fab color="dark" (click)="addList()"><ion-icon name="add"></ion-icon></button>
</ion-fab>

Upvotes: 1

Related Questions