indeterminateIndicatorPolygons property

UnmodifiableListView<RoundedPolygon> indeterminateIndicatorPolygons
final

The sequence of RoundedPolygons that the indeterminate LoadingIndicator will morph between when animating.

This list is used as the default value for the LoadingIndicator.indicatorPolygons parameter when none is explicitly provided.

Implementation

static final indeterminateIndicatorPolygons = UnmodifiableListView(
  [
    MaterialShapes.softBurst,
    MaterialShapes.cookie9Sided,
    MaterialShapes.pentagon,
    MaterialShapes.pill,
    MaterialShapes.sunny,
    MaterialShapes.cookie4Sided,
    MaterialShapes.oval,
  ],
);