Composable Function

RemoteAppCard

Opinionated Wear Material 3 RemoteCard that offers a specific 5 slot layout to show information about an application, e.g.

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free

RemoteAppCardSample

@Composable
fun RemoteAppCardSample(modifier: RemoteModifier = RemoteModifier) {
    RemoteAppCard(
        onClick = Action.Empty,
        appName = { RemoteText("App Name".rs) },
        time = { RemoteText("now".rs) },
        title = { RemoteText("App Card Title".rs) },
    ) {
        RemoteText("This is a sample App Card.".rs)
    }
}