-
public final class PaywallFooterKt
-
-
Method Summary
Modifier and Type Method Description final static UnitPaywallFooter(PaywallOptions options, Boolean condensed, Function1<PaddingValues, Unit> mainContent)Composable offering a minified screen Paywall UI configured from the RevenueCat dashboard. final static UnitOriginalTemplatePaywallFooter(PaywallOptions options, Boolean condensed, Function1<PaddingValues, Unit> mainContent)Composable offering a minified screen Paywall UI configured from the RevenueCat dashboard. -
-
Method Detail
-
PaywallFooter
@Deprecated(message = Use OriginalTemplatePaywallFooter instead, replaceWith = @ReplaceWith(imports = {}, expression = OriginalTemplatePaywallFooter(options, condensed, mainContent)))@Composable() final static Unit PaywallFooter(PaywallOptions options, Boolean condensed, Function1<PaddingValues, Unit> mainContent)
Composable offering a minified screen Paywall UI configured from the RevenueCat dashboard. You can pass in your own Composables to be displayed in the main content area. Only compatible with original Paywalls. If using V2 Paywalls, this will display a fallback paywall instead.
- Parameters:
options- The options to configure the Paywall if needed.condensed- Whether to condense the composable even more.mainContent- The content to display in the main area of the Paywall.
-
OriginalTemplatePaywallFooter
@Composable() final static Unit OriginalTemplatePaywallFooter(PaywallOptions options, Boolean condensed, Function1<PaddingValues, Unit> mainContent)
Composable offering a minified screen Paywall UI configured from the RevenueCat dashboard. You can pass in your own Composables to be displayed in the main content area. Only compatible with original Paywalls. If using v2 Paywalls, this will display a fallback paywall instead.
- Parameters:
options- The options to configure the Paywall if needed.condensed- Whether to condense the composable even more.mainContent- The content to display in the main area of the Paywall.
-
-
-
-