gmlewis / flutter-stylizer

Flutter Stylizer is a VSCode extension that organizes your Flutter classes and mixins in an opinionated and consistent manner.
https://marketplace.visualstudio.com/items?itemName=gmlewis-vscode.flutter-stylizer
Apache License 2.0
23 stars 3 forks source link

Function-type variable is treated the same as function #17

Closed maxpill closed 3 years ago

maxpill commented 3 years ago

Hello,

Flutter stylizer treats function-type variable such as

final String Function() functionName;

the same as a function

String fun(){
return "fun";
}

and instead it being among other final variables its sorted among functions.

v. 0.0.17

gmlewis commented 3 years ago

Thank you for the report, @maxpill ! I'll take a look.

gmlewis commented 3 years ago

@maxpill - this should be fixed in release: https://github.com/gmlewis/flutter-stylizer/releases/tag/v0.0.18

Please let me know if you find any other bugs, and thanks again for the report!

maxpill commented 3 years ago

Great!

Glad that you fixed it. So happy that I can use your tool in my daily work again :)