@blackplate/react-native-shadow-adapter
v1.0.2
Published
A react native utility library to have the same shadows on iOS and Android
Downloads
2
Maintainers
Readme
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)
}
})