AndroidWebViewConfiguration constructor

const AndroidWebViewConfiguration({
  1. bool enableSlowWholeDocumentDraw = true,
  2. bool useWideViewPort = true,
  3. bool loadWithOverviewMode = true,
  4. bool setSupportZoom = true,
  5. bool builtInZoomControls = true,
  6. bool displayZoomControls = false,
  7. AndroidWebViewLayoutAlgorithm layoutAlgorithm = AndroidWebViewLayoutAlgorithm.normal,
})

Creates an instance of AndroidWebViewConfiguration with default values.

Implementation

const AndroidWebViewConfiguration({
  this.enableSlowWholeDocumentDraw = true,
  this.useWideViewPort = true,
  this.loadWithOverviewMode = true,
  this.setSupportZoom = true,
  this.builtInZoomControls = true,
  this.displayZoomControls = false,
  this.layoutAlgorithm = AndroidWebViewLayoutAlgorithm.normal,
});