Open medelvann opened 4 years ago
hi, for this code i get a error : Error:Failed to parse decleration margin:13 in styled-compnent usage
const ViewCoverHeader =styled.View` margin:${wp('2%')}; `;
update: i added px at the end of line and fixed, margin:${wp('2%')}px; but this problem not happening for with and height
margin:${wp('2%')}px;
im using this version of styled-component "styled-components": "^4.0.0"
"styled-components": "^4.0.0"
Try this instead
const margin = wp('2%')
const ViewCoverHeader =styled.View margin:${margin};
make sure to add the backticks and try
@medelvann - did @anmolpandeyy's suggestion work? Can this issue be closed?
hi, for this code i get a error : Error:Failed to parse decleration margin:13 in styled-compnent usage
update: i added px at the end of line and fixed,
margin:${wp('2%')}px;
but this problem not happening for with and heightim using this version of styled-component
"styled-components": "^4.0.0"