Package Exports
- react-native-rainbow
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-rainbow) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Native Rainbow
⌨️ Running in iOS simulator
- git clone https://github.com/nexxtway/react-native-rainbow.git
- cd react-native-rainbow
- yarn install
- cd ios && pod install
- open ios project in Xcode (open ReactNativeRainbow.xcworkspace file)
- build and run
Linting on VS Code
In order to right linting in vs code you need to follow this steps:
- Press fn + f1 in keyboard
- Type
open settingsin search bar and selectPreference: Open Settings (JSON)option - add the following config to the json settings:
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language" : "typescript",
"autoFix": true
},
{
"language" : "typescriptreact",
"autoFix": true
}
]