Giter Site home page Giter Site logo

kagel's Introduction

Kagel

Kagel is a library and Gradle plugin for Android development that generates Android Views from Composable functions. With Kagel, developers can annotate their @Composable functions with @BindView annotation and the plugin will automatically generate a Custom View wrapper around the Composable. This makes it easier to integrate Composable-based UI code with existing Android View-based code.

Usage

Currently Kagel is only compatible with ksp.

Add the Kagel Gradle plugin to your Android project by including the following in your project-level build.gradle file:

buildscript {
    dependencies {
        // ...
        classpath "TODO"
    }
}

Replace with the latest version of the Kagel plugin.

Apply the Kagel plugin in your app-level build.gradle file: apply plugin: 'kagel'

Define your composable theme by using the @BindTheme annotation. For example:

@BindTheme
@DefaultTheme
fun MyTheme(content: @Composable () -> Unit) { //@BindTheme composables must have only one argument!
    //...
}

Annotate your Composable functions with the @BindView annotation. For example:

@BindView
@Composable
fun MyComposable() {
    // Implementation of Custom View
}

Customization

@BindView has man

@BindView(
    name = "<custom_view_name>", //default is <composable_name>View,
    theme = "<custom_theme_name" //default is the Theme that's marked as @DefaultTheme 
)

TODO

  • Stub out api
  • Implement code generation from @BindView
  • Implement code generation for @BindTheme
  • Write tests
  • Build sample app

kagel's People

Contributors

dumblydore 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.