knopp / flutter_reorderable_list

ReorderableList for Flutter
BSD 3-Clause "New" or "Revised" License
335 stars 98 forks source link

Added option to remove drag shadow decoration #9

Closed nuc134r closed 4 years ago

nuc134r commented 5 years ago

Hello.

I didn't find any options to customize decorations. So I added an option to remove shadows while dragging as it was my requirement.

Thank you for this cool library!

nuc134r commented 5 years ago

Due to lack of my knowledge of how PRs work it now also contain my tweaks to haptic feedback.

Sorry.

But in my defense these changes correspond to how most of the reorderable lists I've seen work with only one impact when reordering starts. :)

Daniel-BD commented 4 years ago

This looks really nice :D

philipdolenko commented 4 years ago

@knopp Hi, do you consider to add this PR to master? As for me, it would be great if there will be an option to disable shadow decoration. Ps. Thanks for your awesome work!

philipdolenko commented 4 years ago

@knopp Thanks for a quick reply. I'm just interested, and if you can provide me a bit of estimate when it's possible that you make such an update with customizable decoration. I understand that you can have your work and this library is not a high priority in your life. So just raw estimate like "two weeks", "month" or "half-year" would be very helpful to me, cuz I'm currently developing an app, and there are two ways 1) wait for an update from you 2) fork your library with just that PR with a convinced flag Thanks again for your time and work, have a nice day

knopp commented 4 years ago

Commit 20724b1c7c401e75 added decoratePlaceholder callback to constructor, so if you don't want to shadow you simply decorate the placeholder with empty decoration:

        decoratePlaceholder: (Widget item, double opacity) {
           return DecoratedPlaceholder(widget: item, offset: 0);
        },
knopp commented 4 years ago

Should be available in 0.1.4, published now.

philipdolenko commented 4 years ago

@knopp Thanks for your job, your library helps a lot👍

jayyrivera commented 3 years ago

life saver