2 column in item list bug

I have this format to divide item in 2 list but it fills in 1 row only

<ion-list>
    <ion-row>
        <ion-item>
        <ion-col width-50>
            //item details
        </ion-col>
        </ion-item>
    </ion-row>
</ion-list>

Just a bit off… try this

  <ion-list>
    <ion-item>
      <ion-row>
        <ion-col width-50>
          item details
        </ion-col>
        <ion-col width-50>
          item details
        </ion-col>
      </ion-row>
    </ion-item>
  </ion-list>
1 Like

I have a ion-row / ion-col like above , but the labels and inputs not show. why?:upside_down:

Any answers to this? I am trying to put 2 toggles in 1 ion-item but they are not showing. Code is similar to post above.

I’m having the same issue. Did you manage to solve it? Thanks.