featured
  fun featuredMeasureBar(value: Float, indicator: @Composable () -> Unit = {
            HorizontalBarIndicator(SolidColor(MaterialTheme.colors.primary), fraction = FeaturedMeasureDefaultSize)
        })
Content copied to clipboard
Sets the feature measure value and indicator as a bar.
Parameters
value
The value of the featured measure
indicator
The composable used to render the featured measure. For a bar, the width of the composable represents the extent of the featured measure from 0 to value.