SignpostImageRenderSettings constructor

const SignpostImageRenderSettings({
  1. int borderSize = 10,
  2. bool borderRoundCorners = true,
  3. int maxRows = 3,
})

Creates signpost rendering settings with customizable layout options.

Initializes rendering settings for signpost images with optional border styling and row limits. Defaults provide a modern, readable appearance suitable for most navigation use cases.

Parameters

  • borderSize - Border width in pixels around the signpost (default: 10)
  • borderRoundCorners - Whether to use rounded corners for modern styling (default: true)
  • maxRows - Maximum number of destination rows to display (default: 3)

Implementation

const SignpostImageRenderSettings({
  this.borderSize = 10,
  this.borderRoundCorners = true,
  this.maxRows = 3,
});