Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 630 Bytes

File metadata and controls

37 lines (26 loc) · 630 Bytes

controlresell-ui

Shared components library for Compose Multiplatform, used for ControlResell apps.

Installation

To use this component library, add the following to your build.gradle.kts:

dependencies {
    implementation("com.controlresell:ui:0.2.2")
}

Usage

First, wrap your application in a ControlResellTheme:

@Composable
fun App() {
    ControlResellTheme {
        // Your app content here
    }
}

Then, you can use the provided components.

Storytale

./gradlew desktopStoriesRun