Open new page when User Click on any item from ion-item

后端 未结 2 370
孤城傲影
孤城傲影 2021-01-17 01:23

Here is the codepen

1) I want to open new details page, when user click on item and want to show details of that clicked item in newly opened back.
2) On details

2条回答
  •  太阳男子
    2021-01-17 02:04

    Add something like this to your css:

    ion-list div ion-item i {
      float: right;
      position: relative;
    }
    

    You may need to add a line like:

    top: -20px;
    

    to tweak the positioning.

提交回复
热议问题