Multiple shadow
npm install @appandflow/react-native-shadows
import { Shadow } from '@appandflow/react-native-shadows';
// ...
<Shadow
shadows={[
{
shadowColor: 'blue',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 1,
shadowRadius: 12,
},
{
shadowColor: 'red',
shadowOffset: { width: 0, height: 0 },
shadowOpacity: 1,
shadowRadius: 12,
},
]}
style={styles.element}
>
<Text>Hello world</Text>
</Shadow>
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library