backgroundColor property

Color? backgroundColor

The background color of the map.

This value specifies the color to be displayed behind the map. This color will be displayed in transparent areas of the map and areas where there is no basemap or operational data.

When a map is set on an ArcGISMapViewController, changes to ArcGISMap.backgroundColor take immediate effect.

The default value is null. In this case, the ArcGISMapViewController.backgroundGrid specifies the background color.

Implementation

Color? get backgroundColor => _backgroundColor.value;
void backgroundColor=(Color? value)

Implementation

set backgroundColor(Color? value) => _backgroundColor.value = value;