flutter_draggable_gridview
flutter_draggable_gridview copied to clipboard
This package supports drag & drop widgets inside the GridView.builder for multiplatform. It provides all the properties which are available in Gridview. builder and easy to implement with the few line...
In my App the DraggableGridItems are just Texts with different colors. Changing the color in the Widget build function had no effect as the internal list was not updated.
I truly appreciate the effort put into developing this package. It's an honor to utilize such a well-crafted, clever, and efficient tool. Your dedication to simplicity and functionality is evident...
Hi, I made a straightforward change to your package - I added an Index to DraggableGridItem. This change allows Shared Preferences to store the list of DraggableGridItems and sort them...
I need to give the user feedback (vibration or text change) when dragging starts, please open the onDragStarted callback LongPressDraggable Widget
Problem: After dragging, scroll to the top want : After dragging, don't scroll to the top ``` dart import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:flutter_draggable_gridview/flutter_draggable_gridview.dart'; class TPPinJieHomePage extends StatefulWidget { const...
Maybe we can add a demo of widget changes.
I implemented the fix from issue #34 to stop the grid from scrolling to the top. That works, but now the drag and layout updates feel janky and not smooth....