PricePvOnPv

fun PricePvOnPv(pvOnPvPrice: String, pvOnPvDiscountPercentage: String, price: String, lidlPlusPrice: PriceType.LidlPlus, size: PriceSize, modifier: Modifier = Modifier, prefix: String? = null, pvOnPvFooterContent: @Composable ColumnScope.() -> Unit? = null, footerContent: @Composable ColumnScope.() -> Unit? = null)

A PriceType.LidlPlus price that shows the comparison to a discount price.

The Lidl Plus icon exceeds the component by 3 dp in consistency with the designs. Please use at least 4 dp of padding.

If pvOnPvDiscountPercentage is empty, no pointer box will be rendered.

PV on PV Price Sample

Parameters

pvOnPvPrice

The discounted price.

pvOnPvDiscountPercentage

The discount percentage for the discount price. If empty, no pointer box will be rendered.

price

The price with the Lidl Plus discount.

lidlPlusPrice

The PriceType.LidlPlus price information.

size

The size of the price.

modifier

optional Modifier to be applied to the Price. Defaults to Modifier.

prefix

optional String for the price prefix. Defaults to null.

pvOnPvFooterContent

optional content for the footer of the discounted price. Please only use PvOnPvDoubleCurrency and PvOnPvFooterText. Defaults to null.

footerContent

optional content for the footer of the discounted price. Please only use DoubleCurrency, FooterText, and FooterLinkText. Defaults to null.