Pierre Skowron

Results 13 comments of Pierre Skowron

Here is my working code: ``` } onChange={(s) => setActiveSections(s)} sectionContainerStyle={styles.container} /> ``` Don't forget to pass the props to you component, or it won't work.

I had a similar issue with this plugin. I understood that it catches the event at first, as it is higher in the component tree. Basically, every `PanResponder`-based element nested...

At first, it sounded like a pretty simple change: ```JavaScript // In /dist/dragula.js // line 75: if (o.removeOnSpill === void 0) { o.removeOnSpill = false; } if (o.removeOnSpill === void...

Store your options in a variable then you can access it with the selected index: ``` const options = ['east', 'west', 'north', 'south', 'Cancel']; const handlePress = (index) => {...

Being abble to set the size of the thumb would be great too. ```JSX ``` Any ETA? At least a "No"?

It's such a shame this fix is not merged yet. More than 6 months after.

You can find your answer on [StackOverflow](https://stackoverflow.com/a/46434046/2099704) You will need [prop-types](https://www.npmjs.com/package/prop-types) ```javascript import PropTypes from 'prop-types' // ... static propTypes = { onDragStart: PropTypes.func, // instead of React.PropTypes.func onDragEnd: PropTypes.func,...

Here is an alternative while awaiting for this feature: ```javascript const table = $('#table').bootstrapTable({ pagination: true, maintainMetaData: true, // false by default, you'd lost the selection by changing page //...

Yes I'm on Windows. Doesn't work on both Windows 7 and Windows 10 :disappointed: I'll try to tweek the sources and debugg it on my own as soon as I...