I am using React.Native, I put the box-shadow but it does not work at all. I tested other codes but none worked.
` import styled from 'styled-components/native'
export const Box = styled.View`
border-radius: 10;
height: 150;
width: 300;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
`;
export const Title = styled.Text`
color: #4b1b5f;
font-size: 25px;
font-weight: 900;
`;
`