tailwind-styles-android Tailwind Templates

Tailwind Styles Android

This library brings the colors palette and dimens values from tailwind to Android.

tailwind-styles-android

Recently started to learn about Tailwind and web development. I found the design patters to be awesome and wanted to bring the basics to Android.

It includes this categories from Tailwind, check out the links of their docs for more details.

You can find a list of the added resources here:

And use them as any other resource in your app.

Example:

<com.google.android.material.button.MaterialButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/spacing_1"
    android:backgroundTint="@color/slate_600"
    android:padding="@dimen/spacing_4"
    android:text="Tailwind is awesome!"
    android:textColor="@color/amber_50"
    app:cornerRadius="@dimen/rounded_md"
    app:strokeColor="@color/slate_700"
    app:strokeWidth="@dimen/border_2" />

Installation

In your root build.gradle add the JitPack repo

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

In your app build.gradle add the dependency

dependencies {
    implementation 'com.github.puntogris:tailwind-styles-android:1.1.0'
}

Top categories

Loading Svelte Themes