Slava P.
Slava P.
http://alienryderflex.com/hsp.html Current implementation tends to choose black in cases when white is much more appropriate. ```dart /// Returns - a number in the rage of 0 (black) to 255 (white)....
Please add such option
I have not found such feature in demos, is it possible? 
```js var f = $(mycontainer).filterizr(); f.filterizr("sort", "a", "desc"); // works // ... far far away in the other place of code, variable f is not available anymore $(mycontainer).filterizr("sort", "a", "desc");...
In case of dash f.filterizr('sort') works only every second time: ```html ``` But if dash removed, it works just fine: ```html ``` jQuery 3.3.1 and Filterizr 1.3.4
```dart class _GroupButtonBodyState extends State { @override void initState() { super.initState(); if (!widget.isRadio) { widget.controller.toggleIndexes(widget.selectedButtons ?? []); //
There should be some way to process mixin parameters in conditional way, e.g. @defmixin test(AAA) { @if (AAA == 5) {...} @else {...} } As simpler solution, may be selectFrom...
It should be possible to declare and use local variable somehow in mixin. Right now it's possible declare @def in mixin, BUT it will be global variable. As workaround I...
Method of StatefulWidget gives false warning: ```dart Future _getStr(BuildContext context) async { var a = await aaa(); return mounted ? bbb(context, a) : ''; } ``` No warning if changed...
No warning in that case, though it should be: ```dart try { await aaa(); // SUCCESS await bbb(); // FAILURE } catch (ex, stack) { await ccc(context); } ```