Nathanael Silverman
Nathanael Silverman
Cool project! I've started using it and may propose a few additions. Noticed the aforementioned discrepancy in the documentation.
For Drawable attributes we could generate a style builder method/function with a parameter of type `@ColorInt int` which would automatically create a ColorDrawable.
This would be a breaking change.
This could potentially replace view proxies.
For example: ```kotlin @ParisConfig(defaultStyleableNameFormat = "%s") ``` With a view such as: ```kotlin @Styleable class MyView ... ``` Would automatically look for `R.styleable.MyView` since the value isn't specified.
This would be notably useful in the `BaseView` case where many of the subclasses may not need to change their style from the parent. This could eventually become the default...