Fabian Freund
Fabian Freund
I decode my SVG's using `fromSvgBytes`. Here we can control the color via the `SvgTheme` color property. Is it possible to paint the resulting `DrawableRoot` on the canvas using `draw()`...
The recently added support for `currentColor` in `ThemeData` ignores the colors opacity. For example this will render the icon with full opacity, despite it should be fully invisible: ```dart final...
**Steps to Reproduce** Opening an encrypted box with a wrong key leads to the wipe of the complete box (= content of *.hive-file is then empty). I was expecting "undefined...
Draft PR for filtering of extra tags, related to #592. So far it only enables filtering on the existence of keys inside the extra-tag object. Extra tags has been introduced...
Since #576 we can include additional information in the results. This is a great feature, and saves from reloading of full elements a lot of times :+1: Would the data...
I just pulled the docker image with the latest tag. However, it exposes the API of Version 0.0.1. On your official Demo at http://yake.inesctec.pt/apidocs/ version 0.0.2 is exposed. I checked...
This is an effort trying to tackle the problems discussed in #567, #424, and #204. This solution introduces a `CancellationToken`, which is passed into the http-methods of `Client` e.g.: ```dart...
I was wondering why pyosmium works with a separate sequence-file and not writing directly into to the osmium-header (especially because it is also using it as a reference when provided...
For some reason the URL for SIteLink's is always null. ```csharp var entity = new Entity(_wikiDataSite, "Q1022"); await entity.RefreshAsync( EntityQueryOptions.FetchAllProperties ); ```  I also tried around with `EntityQueryOptions` e.g....
Let's say some package is providing me an immutable class as a result. Unfortunately, there is no equality support and `copyWith`, as I know and love from `freezed`. Package authors...