Pascal
Pascal
I think I had a similar issue. You can simply use the JavaFX methods to scale: ```java SVGImage img = SVGLoader.load(url); img.setScaleX(4); img.setScaleY(4); ```
I think this is fixed now. However, feel free to reopen this or create a new issue if you disagree or if there are any other problems! 👍
Fixes #53
Thanks for the PR, it's merged now! 👍
@mholt I've created a draft (not working) PR for this. If you have time, it would be really nice if you could have a quick look and give some quick/blunt...
@mholt I pushed some changes. I changed CertificateLoader like this: ```go type CertificateLoader interface { Initialize(updateCertificates func(add []Certificate, remove []string) error) error } ``` That way, existing loaders (e.g. StorageLoader)...
When moving the code into the Provision method, how would it access the certCache?
I think this is fixed with the latest release!
I have a similar problem, aborting running HTTP requests also poses a problem in StrictMode. Suppose I have the following component, everything is fine: ```jsx function StatusComp() { const [state,...