How to get Sticky attribute work on device?

When using the Sticky attribute in browser, it works perfectly, shockingly it does not work on device, how to fix this?

<ion-content>
  <ion-item-group>
    <ion-item-divider sticky>A</ion-item-divider>
    <ion-item>Angola</ion-item>
    <ion-item>Argentina</ion-item>
  </ion-item-group>
</ion-content>

shockingly, your device’ wrapper probably doesn’t support position sticky.

http://caniuse.com/#search=sticky

This shows us that it won’t work on older device browsers, also not on older chromium versions (which are the ones used on older android devices).