Slava P.

Results 38 issues of 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)....

enhancement

Please add such option

I have not found such feature in demos, is it possible? ![image](https://user-images.githubusercontent.com/4129763/145659819-fddad45e-19a3-42b8-82e4-f973361fb9e7.png)

enhancement
next version candidate

```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...

enhancement
help wanted

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...

enhancement
help wanted

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...

type-bug
false positive
set-flutter

No warning in that case, though it should be: ```dart try { await aaa(); // SUCCESS await bbb(); // FAILURE } catch (ex, stack) { await ccc(context); } ```

type-bug
false negative
set-flutter