Eric

Results 10 issues of Eric

Please add the option to pass our own custom `GradientTransform` to the track and progress gradient. For example: ```dart CustomSliderColors( trackColor: Colors.grey, progressBarColors: [Colors.red, Colors.green, Colors.blue], progressTransform: GradientRotation(45 * (pi/180))...

I am trying to to run an update using `where` inside a `transaction` but it gives met the following error message: `E/SQLiteLog(12156): (1) statement aborts at 3: [BEGIN EXCLUSIVE;] cannot...

When using the key `other` in the .arb file e.g. ``` { "other": "Other", "hello": "Hello" } ``` The plugin will generate the following: ``` String get hello => "Hello";...

bug

How do I handle system language changes in Flutter? Changing the language in my Android device's settings does not change the `Culture.current`, and therefore not the date and time format....

When doing a golden test on a widget with a `GlobalKey` an exception is thrown when tested on more than one device. Success: ```dart testGoldens('global Keys', (tester) async { final...

Please consider changing `activeText` and `inactiveText` to accept a widget instead of a String. This way you can show images, icons and anything else you like in the track.

## What happened? When using a `Stream.periodic` the Reset and Run do not cancel the old streams. A new stream is started and the old ones continue. I expect the...

p1

Please consider supporting rendering icon from packages. At this moment you cannot use `iconStyle` with `iconData` with an icon package. For example https://pub.dev/packages/material_design_icons_flutter. To change this please take a look...

My code looks like this ```dart String httpError(httpError) => Intl.select( httpError, { "400": "Bad Request", "401": "Unauthorized", "403": "Forbidden", "404": "Not Found", "405": "Method Not Allowed", "406": "Not Acceptable", "407":...

type-enhancement
P3
package:intl_translation

The icons are not usable in enums because they are getters and not `const`. For example: ```dart enum SomeIconEnum { sunny(Icons.sunny), //works cloudy(MdiIcons.weatherCloudy); //does not work, icon is not const....