Ian Warwick
02/05/2020, 9:36 PMDoubleTapGestureDetector
with dev04
this seemed to work but now it won't 😞
Clickable(onClick = { onClick(element) }) {
DoubleTapGestureDetector(onDoubleTap = { onDoubleTap(element) }) {
when (element) {
is TextElement -> TextElement(
element,
isSelected,
isEditing
)
is ShapeElement -> ShapeElement(element, isSelected)
is PianoRollElement -> PianoRollElement(element, isSelected)
}
}
}
Shep Shapard
02/05/2020, 10:06 PMIan Warwick
02/06/2020, 9:54 AMShep Shapard
04/02/2020, 5:52 PM