inputAndGestureVariants top-level property
Implementation
final inputAndGestureVariants = ValueVariant<InputAndGestureTuple>(
{
const InputAndGestureTuple(TextInputSource.keyboard, DocumentGestureMode.mouse),
const InputAndGestureTuple(TextInputSource.keyboard, DocumentGestureMode.iOS),
const InputAndGestureTuple(TextInputSource.keyboard, DocumentGestureMode.android),
const InputAndGestureTuple(TextInputSource.ime, DocumentGestureMode.mouse),
const InputAndGestureTuple(TextInputSource.ime, DocumentGestureMode.iOS),
const InputAndGestureTuple(TextInputSource.ime, DocumentGestureMode.android),
},
);