Łukasz Wiśniewski

Results 25 comments of Łukasz Wiśniewski

ok so I solved this by passing a custom context factory (modified version of https://github.com/square/mortar/blob/master/mortar-sample/src/main/java/com/example/mortar/mortarflow/MortarContextFactory.java) to the SimplePathContainer. It reads the value of WithComponent annotation of the given screen and...

@thisisgit this is expected behaviour - you need another svg with scaled up values and with width in it that says `1`

Yes, please. I'm using [ozzie](https://github.com/bmw-tech/ozzie.flutter) to add reports to my tests and it would be nice to just download that folder somehow from AWS.

> If lucky, just adding the option to build in profile mode should be enough to get it going. This is how I run it locally: ``` flutter drive --profile...

That's exactly what I'm going for.

https://github.com/hurshi/dio-http-cache/blob/master/LICENSE

```xml %1$s and %2$s other like your photo %1$s and %2$s others like your photo ``` then: `getQuantityString (R.string.message, 1, "John", "one") ` -> "John and one other like your...

seems there's something: https://github.com/dart-lang/intl/blob/master/lib/src/plural_rules.dart

btw... if strings_en.arb file doesn't specify zero|few etc. keys, those won't get generated for languages that do specify those, so English just having `one|other` will shadow other languages with more...

so digging a bit further into this, generating an example output like the one below would be desirable ```dart import 'dart:async'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:intl/src/plural_rules.dart' as plural_rules; //...