Fred Grott

Results 46 comments of Fred Grott

I spotted something. Do both fimber and fimber-flutter versions have to match? as in that pubspec posted they do not.

Hi Magillus, I got part of the code snippet this so far in main: ```dart import 'package:flutter/foundation.dart'; void main() { init(); runApp(MyApp()); } dynamic init(){ // sets logging up to...

Also would be nice to have hooks for say Sentry.io which the Flutter team uses and maybe bugsnag support at some point as there are some android and ios devs...

okay per my tracking is it due to not using correct version of dart analzer? error says line 89 in dart analzer analysiscontent collection but in current .26.0 ver of...

I kno what it is I think...per this https://github.com/dart-lang/sdk/issues/25551 if I use brackets in my analysis excludes it hangs...if I list my exclude folders separately should stop haning.

here is the workaround I have to use on windows within the analysis_options.yaml file: exclude: - lib\src\localization_gen\l10n.dart - lib\src\localization_gen\intl\messages_all.dart I tried quotes, did not work I tried folder spearators the...

@glesica excluding the lib/src/localization_gen path would be an ideal stop-gap fix. Obvious question is would just excluding the loclaization_gen classes work? For most devs that would be the AppLocalizationDelegate and...

The quick fix that works is to temporary relocate the localization_gen library out of the src folder when generating diagrams. The other fix I talked about does not work. But...

Okay, grinder allows one to run other dart binary tools that you may have added to automate some item of your project workflow. In fact, one can use Derry, build_runnner,...