-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Install rn-gesture-handler and rn-reanimated * Update drag behavior with rn-gesture-handler Leave out event-press and grid-press for now * Update event-press and long-press with rn-gh Leave out grid touches for now * Update grid press and long-press with rn-gh Create ViewWithTouchable, patches TouchableWithoutFeedback from RNGH Reduce from multiple touchables to just one touchable per week * Improve callbacks in Events (minor) Do not recreate callbacks in each render Names used: "handleX" for component methods, "onX" for props * Update lib requirements * Update README (minor) * Remove extra whitespace in package.json * Fix prettier issues (only the issues introduced in this PR) * Setup testing with rn-gh and rn-reanimated libs * Rename tests/config to tests/setup Use standard name * Add event-drag test * Fix linter in utils-gestures.js * Fix merge issues * Update docs Mention breaking change in changelog Tab formatting in readme (automatic) * Improve test var names Improve ViewWithTouchable docs Remove unnecessary key
- Loading branch information
Showing
17 changed files
with
821 additions
and
187 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
module.exports = { | ||
presets: ['module:metro-react-native-babel-preset'], | ||
plugins: [ | ||
'react-native-reanimated/plugin', // Must be the last one in the list | ||
], | ||
}; |
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
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
module.exports = { | ||
presets: ['module:metro-react-native-babel-preset'], | ||
plugins: [ | ||
'react-native-reanimated/plugin', // Must be the last one in the list | ||
], | ||
}; |
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
Large diffs are not rendered by default.
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
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
Oops, something went wrong.