Eli Hart
Eli Hart
This still appears to be an issue. I found that adding ``` if (rotated) { // Rotated needs to be false when we call expand, otherwise it will // think...
@BenSchwab started work on the RxJava2 migration I believe.
There is quite a lot of new work in the 1.0 branch and the migration will probably happen there. not sure if it is worth making changes to master at...
@vinaygaba would be a good point of contact
nifty idea. One potential issue I think is losing the ability to do equals/hashcode. Epoxy has the same issue with click listeners and it can be quite a headache to...
epoxy already saves the last style applies as a tag to avoid reapplying ``` if (!Objects.equals(style, that.style)) { HeaderViewStyleApplier styleApplier = new HeaderViewStyleApplier(object); styleApplier.apply(style); object.setTag(com.airbnb.viewmodeladapter.R.id.epoxy_saved_view_style, style); } ``` it would...
that's a cool idea. maybe it could be even simpler and for linked styles we can just use reference equality? would it be possible to only do that for linked...
it would be kind of nice to remove support for methods annotated with `@Style`, and only allow `Style` objects or ints. That would simplify options and mean that all linked...
Could these still be linked to a view's style builder? especially useful for the case `myViewStyle { }`? I don't see how the processor can know what to link it...
@holgerbrandl I agree scripting should not be a full replacement for gradle projects, but we have developed many use cases for rather complex tools that work better as scripts than...