Hoang Nguyen

Results 14 comments of Hoang Nguyen

Have you installed `postcss-scss` and put a config like this in your babel `plugins` option ? ``` ['react-css-modules', { filetypes: { '.scss': { syntax: 'postcss-scss' } } } ] ```

I'm also using react-testing-library, just find the correct drag and drop elements, then trigger the correct events, it works: ``` fireEvent.dragStart(screen.getByText('Drag me')); fireEvent.drop(screen.getByText('Drop here')); ```

Hi @Fasttrick , there's no configuration for it at the moment, I'll put it in the todo list.

version 0.17.0 was just released to npm, be aware that this has a breaking change.

Hi @TheTushar2696, as mentioned by @pdpino, from the v0.17.0 you have to install two more dependencies to use this library, otherwise it won't work.

Hi @pdpino, I really appreciated your contribution, you helped to improve the library from the performance to the new features! I agree that we should add these stuff, I did...

No problem! I just granted access to you.

Reopened the issue, let's find a way to improve this.

Thanks a lot for your suggestions! I'm trying to implement **infinite horizontal scrolling** using `FlatList`, and the problem is like you mentioned, when scrolling to the left, the scroll position...

Let me try with `ScrollView` to see if it works. About scrolling to just one side, I think it does not feel natural. I would choose this way as the...