You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm confused about Plugins: they aren't mentioned in the docs, and it's unclear if they're things that you can build in runtime, with require('react') or which require recompilation with Grunt. Is the plugin system itself in flux? I'd love to help out on getting these merged so that developing mobile apps is more straightforward.
The text was updated successfully, but these errors were encountered:
For now you need to manually build a version of React with TapEventPlugin and also call initializeTouchEvents.
PS. EventPlugins are not really plugins in the general sense of them being externally pluggable, but rather that they're internally indepedent features.
sophiebits
changed the title
Using event plugins?
Supported API for making new event types (i.e., event plugin injection)
Jun 24, 2014
I'm trying to implement a scrollable list of items that are tappable on mobile devices. It looks like there are two plugins that address the 'how to tap' problem - https://github.com/facebook/react/blob/master/src/browser/eventPlugins/MobileSafariClickEventPlugin.js & https://github.com/facebook/react/blob/master/src/browser/eventPlugins/TapEventPlugin.js .
I'm confused about Plugins: they aren't mentioned in the docs, and it's unclear if they're things that you can build in runtime, with
require('react')
or which require recompilation with Grunt. Is the plugin system itself in flux? I'd love to help out on getting these merged so that developing mobile apps is more straightforward.The text was updated successfully, but these errors were encountered: