Composable Function

RemoteTitleCard

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

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free

RemoteTitleCardSample

@Composable
fun RemoteTitleCardSample() {
    RemoteTitleCard(
        onClick = Action.Empty,
        title = { RemoteText("Title Card Title".rs) },
        time = { RemoteText("now".rs) },
        subtitle = { RemoteText("Card Subtitle here".rs) },
    ) {
        RemoteText("This is a sample Title Card.".rs)
    }
}