Eva

Results 256 comments of Eva
trafficstars

Interesting idea. It probably should be `HoldrAttrs_MyCustomView(...)` so it can't collide with a layout of the same name. I wonder how to set defaults, can you add custom attributes to...

Because the holdr is created based on the layout name. There is no guarantee that you have a layout with the same name as your custom view. Edit: also, if...

Yeah, no problem. I would have probably started working on this myself eventually since I do think it's a good idea, but if you want to contribute, go right ahead!...

Yeah that was part of my plan, provide deps as java 8 and let retrolambda process them as well. That way you don't need a partially processed jar.

ex: https://m3.material.io/components/bottom-app-bar/guidelines#5becae2a-851e-49b6-b253-4eb994f36137

Note: tests fail because of the filename changes, will update if this approach is accepted.

> and simply picks the first one Yeah it's not great to silently drop it. It really should either error out or support multiple like you said. Migration seens a...

Oh hm, actually there's a potential for confusion here if you are using a different scope on say the component and a parent interface. I believe there's already a check...

Right now this ``` interface SomeComponentInterface @MyScope abstract class MyComponent : SomeComponentInterface ``` is equivalent to ``` @MyScope interface SomeComponentInterface abstract class MyComponent : SomeComponentInterface ``` is equivalent to ```...

Have you taken a look at https://github.com/evant/kotlin-inject-samples/tree/main/multiplatform/greeter? It's our sample for multiplatform setup