/Persian

Design System project

Primary LanguageKotlinMIT LicenseMIT

Version of library

Get it on Google Play

Integrating the Persian library into the application:

Step 1

Add mavencentral() repository to build.gradle at project level

repositories {
    mavenCentral()
}

Step 2

Add library dependency in build.gradle at application level

dependencies {

    //...
    
    implementation 'io.github.madmaximuus.persian:persian:<latest_version>'
    
    //...
}

Step 3

Wrap application content in PersianTheme

setContent {
    PersianTheme {
        Surface {
            //Application content 
        }
    }
}