Results 10 comments of pasdam

Can I suggest to use a font for the icons instead of the single svg files? As it is far more efficient (for instance in the demo app the `Material...

Can you be more specific about the "better ways"? maybe I can improve my apps as well. Anyway, I'm currently using `Text` elements and they work fine; at the time...

Question: I had to make some changes on the qbs files of this repo and the submodule in order to make the macos build working again, what's the best commit...

Closing this, as no feedback has been provided for long time

In an [Activity](https://developer.android.com/reference/android/app/Activity) or a [Fragment](https://developer.android.com/reference/android/app/Fragment) you can do this: ```java int color = getResources().getColor(R.color.amber_400); TextDrawable drawable = TextDrawable.builder() .beginConfig() .fontSize(50) .bold() .toUpperCase() .endConfig() .buildRound(firstLetter, color); ``` [Source](https://developer.android.com/reference/android/content/res/Resources).

It's similar to [#36](https://github.com/kubernetes/cloud-provider-aws/issues/36), but I couldn't reopen that one

Do you mean this ```yaml apiVersion: v1 kind: Service metadata: annotations: meta.helm.sh/release-name: gloo meta.helm.sh/release-namespace: gloo-system service.beta.kubernetes.io/aws-load-balancer-access-log-emit-interval: "5" service.beta.kubernetes.io/aws-load-balancer-access-log-enabled: "true" service.beta.kubernetes.io/aws-load-balancer-access-log-s3-bucket-name: service.beta.kubernetes.io/aws-load-balancer-access-log-s3-bucket-prefix: api service.beta.kubernetes.io/aws-load-balancer-additional-resource-tags: Environment=staging,Name=api,GitHubRepo=gloo service.beta.kubernetes.io/aws-load-balancer-healthcheck-healthy-threshold: "2" service.beta.kubernetes.io/aws-load-balancer-healthcheck-interval: "10" service.beta.kubernetes.io/aws-load-balancer-healthcheck-path: /envoy-hc...

I can't easily test it now, but yeah it was consistent when we were looking into it, we ended up recreating it, which was annoying, and in some cases might...

It seems to me like the last added snippet is actually reloaded, all the previous ones are not, so it feels like only the last file is monitored for changes,...