import Compatibility from "../\_compatibility.mdx" import Usage from "../\_usage.mdx" # Box Shadow ## Usage :::caution On native, shadows may not appear if a background color is not set ::: ## Example ```SnackPlayer name=Hello%20World import { Text, View } from 'react-native'; import { styled } from 'nativewind'; const StyledView = styled(View) const StyledText = styled(Text) const App = () => { return ( Try editing me! 🎉 ); } ``` ## Compatibility