rememberLogoState

@Composable
fun rememberLogoState(margin: PaddingValues = PaddingValues( start = dimensionResource(id = R.dimen.logo_margin_left), bottom = dimensionResource(id = R.dimen.logo_margin_bottom), ), visibilityPolicy: LogoView.VisibilityPolicy = LogoView.VisibilityPolicy.Visible): LogoState

Remembers and returns the LogoState. The same state is returned as long as all parameter values are the same. If any parameter value changes, a new state instance is returned.

Important: Use named parameters to avoid ambiguous method calls due to API changes.

Parameters

margin

Margin of the logo that it will use for positioning in the area of the map. The default value is 12dp for start and 16dp for bottom, positioning the logo at the bottom-start.

visibilityPolicy

The visibility policy of a logo. The default value is LogoView.VisibilityPolicy.Visible.