0
Good morning,
I’m using Styled Components in styling my components in an React Native app, and I’m trying to put a colorful and rounded edge on my Picker, but it’s rendered without styling. The code I’m using is as follows::
const InputSexo = styled.Picker`
margin-top: 10px;
margin-bottom: 10px;
font-size: 15px;
border: 1px solid #7b70e6;
width: 50%;
height: 50px;
border-radius: 25px;
padding: 15px;
color: #7b70e6;
`;
I am developing this app using Expo to test on my mobile with Android system.
Create a Minimum reproducible example so it will be easier for someone to help you
– sant0will