karvulf / flutter-reorderable-grid-view

BSD 3-Clause "New" or "Revised" License
143 stars 20 forks source link

Library not working in PageView.builder #113

Open billizzard2 opened 1 month ago

billizzard2 commented 1 month ago

Example from description work well. But if i put it in PageView.builder, it's not working. I can drag item, but can't reorder

return PageView.builder(
    controller: controller,
    onPageChanged: (index) {
      changePage(index);
    },
    itemBuilder: ((context, index) {
      return ReordableExample(); // Widget from documentation

    })
  );
karvulf commented 1 month ago

Hello @billizzard2 , thank you for opening the issue. I have to check this, sounds like a bug