Code cleanup

This commit is contained in:
Hillel Coren 2021-04-19 20:49:06 +03:00
parent 4a797bfd98
commit ec68355aa1
1 changed files with 0 additions and 2 deletions

View File

@ -251,7 +251,6 @@ class KanbanViewState extends State<KanbanView> {
}, },
), ),
onStartDragItem: (listIndex, itemIndex, state) { onStartDragItem: (listIndex, itemIndex, state) {
print('## START DRAG');
setState(() => isDragging = true); setState(() => isDragging = true);
}, },
/* /*
@ -267,7 +266,6 @@ class KanbanViewState extends State<KanbanView> {
int oldItemIndex, int oldItemIndex,
BoardItemState state, BoardItemState state,
) { ) {
print('## STOP DRAG');
setState(() => isDragging = false); setState(() => isDragging = false);
if (listIndex == oldListIndex && itemIndex == oldItemIndex) { if (listIndex == oldListIndex && itemIndex == oldItemIndex) {