RN Shadow Adapter
Inspired by react-native-shadow-generator, this Library provides a simple way to keep react native shadows the same on both iOS and Android.
Usage
import {StyleSheet} from 'react-native';
import shadow from '@blackplate/shadow';
const styles = StyleSheet.create({
container: {
backgroundColor: 'white',
...shadow(16)
}
})