webraptor / react-native-deck-swiper

tinder like react-native deck swiper
ISC License
126 stars 81 forks source link

elevation will break overlays #45

Open mxmtsk opened 3 years ago

mxmtsk commented 3 years ago

When I give my cards elevation to add a nice shadow, overlays will stop showing completely. Shadow properties for iOS work fine.


renderCard={() => {
  return (
    <View style={{ flex: 1, elevation: 5 }}>
      {/* content */}
    </View>
  );
}}