Code cleanup
This commit is contained in:
parent
4a797bfd98
commit
ec68355aa1
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue