react-native-extended-stylesheet
react-native-extended-stylesheet copied to clipboard
Extended StyleSheets for React Native
I have dumb component, and for getting access to colors I must use EStyleSheet.value. ``` const DumbComponent = () => { const [isActive, setActive] = useState(false); //Current realisation const activeBackground...
After implementing media queries in #5 I'm thinking about supporting orientation change somehow. As it will allow to get full power of media queries. Technically I see these steps: 1....
Great library! I wish I'd found this sooner. I'm using a lot of media queries for iPad layouts and it'd be really handy to be able to store breakpoints as...
Bumps [shell-quote](https://github.com/substack/node-shell-quote) from 1.6.1 to 1.7.3. Release notes Sourced from shell-quote's releases. v1.7.2 Fix a regression introduced in 1.6.3. This reverts the Windows path quoting fix. (144e1c2) v1.7.1 Fix $...
#### Steps to Reproduce Any stylesheet.create() object key click for type completion in vscode Example ``` const containerStylesRaw = { basic: basicContainer, center: centerContainer, } const containerStyles = EStyleSheet.create(containerStylesRaw) ```...
**Hi guys, great job!** Is there a possibility of integration and availability of variables for styled-components/native?
The 'scalability' of props was determined by checking if they have things like 'width', 'height', 'radius' in their name. This doesn't work for 'top', 'left' and 'right', and thus they...
Is there anyway we can make css intellisense working inside EStyleSheet.create for vscode.
I'm losing types suggestion from Visual Studio Code if I use EStyleSheet. Do I need to install anything beyond "react-native-extended-stylesheet" to get the types as I have them with StyleSheet?...
> Percent values are supported natively since React Native 0.43. EStyleSheet passes them through to original StyleSheet except cases, when you use calculations with percents, e.g. "100% - 20". Percents...