Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I need to set editingGestureType to EditingGestureType.doubleTap, but in this case, the onCellTap event needs to wait for the double-click judgment to end, and the parsing code takes 190 milliseconds. As a result, some clicks are delayed too much, is there a good way to fix this?
----------------------------------------------------------------------------------------------------------------------------------
2024-10-25
Thank you for your reply, both situations exist in the process of our use,
First of all, in terms of feedback, if allowEditing is set to true, there will be a large delay when the cell is switched, and you can see that the border of the selected unit can not keep up with the speed of mouse clicks at all, and the response is fast when allowEditing is false.
Sirst of all, in terms of feedback, if allowEditing is set to true, there will be a large delay when the cell is switched, and you can see that the border of the selected unit can not keep up with the speed of mouse clicks at all, and the response is fast when allowEditing is false.
Secondly, we need to define some functions in onCurrentCellActivated and onCellTap, and this delay will also cause the operation to be very unsmooth.
Thirdly, there seems to be some problems with the cell double-click editing trigger, and most of the time the double-click cannot enter the editing state. Different click speeds have been tried, so we had to judge whether to double-click the event in onCellTap and then open the edit state.