Steve Alexander
Steve Alexander
I'd like to display some floorplans in an app for a conference. The floorplans are in SVG format — here is an example: https://d7vxxpq42vr68.cloudfront.net/2018/m2020-us/floorplans/375698-752672.svg The shapes render fine, even for...
just tried @krispyen's PR branch — works great for my purposes: https://github.com/krispypen/flutter_svg.git
The default is to not use the columns cache, I think. To be sure, I've changed each ``` result.each do ``` to ``` result.each(cache_rows: true) do ``` The output is...
In the docs: ``` result = client.execute(sql) result.each do |rowset| # First time data loading, yields each row from each set. # 1st: {"id"=>11} # 2nd: {"bigint"=>-9223372036854775807} # 3rd: {"bigint"=>9223372036854775806}...
That’s a great point! Would you mind making a PR that improves things?
I did a rough draft of null safety in this PR https://github.com/Dana-Ferguson/time_machine/pull/50 It probably doesn’t fully work yet. I did it more as an exploration in what would be necessary...
I've been polishing up the null-safety PR. As of now, there are no analyzer errors on the branch (pedantic analysis rules), 10000 tests pass and zero tests fail ~~one test...
Thanks @benjdero. I know there's a number of people keen to see a null-safe release. I've been talking with @Dana-Ferguson, author of this package, who is reviewing the null-safety PR....
Thanks for posting a fix here. Couple of things we should consider: 1. This is caused by a bug in Dart that manifests only on Android. The bug is here,...
Hi @Vipulkerai The code in this repo is already null safe. I guess what you're asking for is a new release to pub.dev ? @Dana-Ferguson do you have time to...