forked from aksonov/react-native-router-flux
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'react-navigation-v2' into dc/react-navigation-v2/replac…
…e-action * react-navigation-v2: small tweaks bump version introduce onStateChange handler to be used instead of createReducer fix navTransparent add onEnter/onExit handlers and automatic transitions fix eslint fix error more eslint fixes fix eslint errors fix error fix eslint fix custom navigators Babel v7, ESlint fixes, React/React Navigation upgrades, mobx removed (aksonov#3142) use WIP RNRF for Example revert RN to 0.55.4 upgrade Example to RN0.56 WIP: migration to react-navigation v2.x (aksonov#3068)
- Loading branch information
Showing
66 changed files
with
6,586 additions
and
7,032 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"printWidth": 180, | ||
"singleQuote": true, | ||
"semi": true, | ||
"bracketSpacing": true, | ||
"trailingComma": "all" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,3 +51,4 @@ buck-out/ | |
fastlane/report.xml | ||
fastlane/Preview.html | ||
fastlane/screenshots | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module.exports = { | ||
presets: [ | ||
'react-native', | ||
'module:metro-react-native-babel-preset', | ||
], | ||
plugins: [ | ||
['@babel/plugin-proposal-decorators', { legacy: true }], | ||
], | ||
}; |
Oops, something went wrong.