react-native-sass-transformer icon indicating copy to clipboard operation
react-native-sass-transformer copied to clipboard

Use Sass to style your React Native apps.

Results 27 react-native-sass-transformer issues
Sort by recently updated
recently updated
newest added

Hi, Thank you for making scss to RN stylesheet transformer, it is really convenient to use. I was wondering how can we specify platflorm specific properties like **elevation** for example...

Not quite an issue, more of a question... I haven't been able to go around the `.scss` imports when using Jest for tests. A solution that I have yet to...

Unfortunately this transformer does not work for Expo Web view, just for the iOS and android views.

Please give an option to convert classnames with dashes to camcelCase in the code. I.e. `.my-class` selector should be usable with `styles.myClass` instead of `styles['my-class']`. It feels more natural to...

See: https://github.com/expo/expo/tree/master/packages/expo-updates Expo just added a requirement for a metro.config.js for bare apps that looks like: ``` module.exports = { transformer: { assetPlugins: ['expo-asset/tools/hashAssetFiles'], }, }; ``` I tried a...

Files that are imported using `@import` do not get live reloaded. React Native's packager does not know that the file that has changed is imported in another file, so it...

bug
help wanted

I'm using expo 3.4.1 with a blank app and have followed your [setup instructions](https://github.com/kristerkari/react-native-sass-transformer) however no styles are transformed ``` import styles from "./App.scss"; console.log('styles', styles) ``` the output of...

When an empty file is referenced, this error is thrown. ``` error: bundling failed: Error: No input specified: provide a file name or a source string to process at Object.module.exports.renderSync...

I'm trying to set this up with imported .scss files using the styleName property however I'm getting the following error when I run yarn start to start the metro bundler:...

Previously, this module was incorrectly resolving paths. For an import of `A/b` from file `/C/d.scss`, it was looking in **[`/C/A`, `/C`, `/`]** for a file `d.android.scss`/`d.ios.scss`, `d.native.scss`, `d.scss`. For an...