Slide 29
Slide 29 text
lift
fun ActionDSL.doubleTap(): ActionDSL =
combine(this, com.pguardiola.uigesturegen.dsl.doubleTap())
fun doubleTap(): ActionDSL = FreeApplicative.liftF(GesturesDSL.DoubleTap)
fun ActionDSL.pinchIn(percent: Int, steps: Int): ActionDSL =
combine(this, com.pguardiola.uigesturegen.dsl.pinchIn(percent, steps))
fun pinchIn(percent: Int, steps: Int): ActionDSL =
FreeApplicative.liftF(GesturesDSL.PinchOut(percent, steps))
// ...
@Guardiola31337