Android and iOS compatible shadows with React Native Skia.
Report Bug
·
Request Feature
Table of Contents
Take a look at the iOS and Android screenshots below.
npm install @shopify/react-native-skiayarn add @shopify/react-native-skia-
(MacOS only) Install Cocoa packages
npx pod-install
npx expo install @shopify/react-native-skianpm install react-native-skia-shadowyarn add react-native-skia-shadowWrap the component you want to add a shadow inside a SkiaShadow component.
| Prop | Type | Default |
|---|---|---|
| blur | number |
|
| dx | number |
|
| dy | number |
|
| color | Color |
'black' |
| borderRadius | number |
0 |
| borderTopLeftRadius | number |
borderRadius |
| borderTopRightRadius | number |
borderRadius |
| borderBottomLeftRadius | number |
borderRadius |
| borderBottomRightRadius | number |
borderRadius |
import React from 'react';
import { StyleSheet, View } from 'react-native';
import { SkiaShadow } from 'react-native-skia-shadow';
export const App = () => {
return (
<View style={styles.container}>
<SkiaShadow blur={5} dx={0} dy={0} color="blue" borderRadius={9999}>
<View style={styles.circle} />
</SkiaShadow>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
circle: {
width: 150,
height: 150,
borderRadius: 9999,
backgroundColor: 'red',
},
});For usage details, please refer to the src folder of the example app. https://github.com/chsdwn/react-native-skia-shadow/tree/main/example/src
See the contributing guide to learn how to contribute to the repository and the development workflow.
Distributed under the MIT License. See LICENSE for more information.
- Made with create-react-native-library
- React Native Skia

