How to use zIndex in react-native

后端 未结 5 1231
攒了一身酷
攒了一身酷 2020-12-23 13:19

I\'ve want to achieve the following:

The following images are what I can do right now, but that\'s NOT what I want.

Sample of code I have right now

5条回答
  •  清酒与你
    2020-12-23 14:14

    Use elevation instead of zIndex for android devices

    elevatedElement: {
      zIndex: 3, // works on ios
      elevation: 3, // works on android
    }
    

    This worked fine for me!

提交回复
热议问题