Giter Club home page Giter Club logo

composents's Introduction

Android CI

Components

Instalation 💿

In settings.gradle.kts add jitpack repository :

repositories {
    google()
    mavenCentral()
    maven { url = uri("https://jitpack.io" ) } // This line
}

Then you can add dependency :

implementation("com.github.ThomasBernard03:Composents:version")

Buttons 🖲️

PrimaryButton

alt text

fun PrimaryButton(
    text : String,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
    loading : Boolean = false,
    onClick: () -> Unit
)

OutlinedButton

alt text

@Composable
fun OutlinedButton(
    text: String,
    modifier : Modifier = Modifier,
    enabled : Boolean = true,
    loading : Boolean = false,
    color : Color = MaterialTheme.colorScheme.primary,
    onClick: () -> Unit
)

RoundedButton

alt text

@Composable
fun SquaredButton(
    modifier : Modifier = Modifier,
    @DrawableRes resource: Int,
    onClick: () -> Unit,
    backgroundColor : Color = MaterialTheme.colorScheme.primary,
    color : Color = Color.White,
) 

Navigation 🧭

Animation

Slow motion demonstration :

animatedComposable is an extension method of NavGraphBuilder. To use it, simply replace the "composables" in your NavHost with animatedComposables. It can be used like this :

NavHost(navController = navController, startDestination = "home"){
    animatedComposable("home"){
        HomeScreen()
    }
    animatedComposable("buttons"){
        ButtonsScreen()
    }
}

Navigation bar

alt text

composents's People

Contributors

thomasbernard03 avatar

Stargazers

Mustafa TOKTAŞ avatar Sylvester Yao avatar  avatar Nav Singh avatar Thibaut Monin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.