tags property

List<String> tags

Decides how to handle a specific navigation request in the WebView of an Iframe. It's necessary to use the webview_flutter package inside the app to use NavigationDelegate.

Implementation

static List<String> get tags => new List<String>.from(STYLED_ELEMENTS)
  ..addAll(INTERACTABLE_ELEMENTS)
  ..addAll(REPLACED_ELEMENTS)
  ..addAll(LAYOUT_ELEMENTS)
  ..addAll(TABLE_CELL_ELEMENTS)
  ..addAll(TABLE_DEFINITION_ELEMENTS);