defaultTouchContextMenu property

dynamic get defaultTouchContextMenu

Gets or sets the HTMLInfo or Adornment that acts as the default touch context menu. On touch devices, this context menu will appear even there is no context menu defined.

You can disable this functionality by setting this property to null.

By default shows a set of HTML elements acting as a context menu.

Implementation

_i2.dynamic get defaultTouchContextMenu => _i4.getProperty(
      this,
      'defaultTouchContextMenu',
    );
set defaultTouchContextMenu (dynamic value)

Implementation

set defaultTouchContextMenu(_i2.dynamic value) {
  _i4.setProperty(
    this,
    'defaultTouchContextMenu',
    value,
  );
}