Answers for "react native Error styled 'marginTop' of RCTView with JSON value 'px' of type NSString"

1

react native Error styled 'marginTop' of RCTView with JSON value 'px' of type NSString

// In my case I was using an android library that was 
// not available in ios (StatusBar.currentHeight). 
// I had to adapt my code:
const theView = styled.View`
  margin-top:${StatusBar.currentHeight}
`;
// to:
const theView = styled.View`
  ${StatusBar.currentHeight && `margin-top:${StatusBar.currentHeight}px`};
`;
Posted by: Guest on August-07-2021

Code answers related to "react native Error styled 'marginTop' of RCTView with JSON value 'px' of type NSString"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language