Honza Bittner
Honza Bittner
Hi, what we do currently in our project is that: 1. We always set `ChuckerFlutter.showOnReleas = true` depending on the config of platform (we check flavor). 2. In our ApiClient...
Lol and this post made me realize that I dont have to add/remove interceptor and I can just control those variables ```dart ChuckerFlutter.showOnRelease = isEnabled; ChuckerFlutter.isDebugMode = isEnabled; ``` when...
Ideally there would be fields - `allowInDebug` - defaults to `true` - `allowInRelease` - defaults to `false` - `isEnabled` - defaults to `true` and then the condition in the interceptor...
Hi @syedmurtaza108, I am just reminding you. Thanks. :)
We would also want to do these types of tests to for example test whether one-time profiles are not present in the second app run, etc.
Hi @muhammadalkady, thanks for reporting the issue. Do you want to create a fix for that yourself?
I really like this as it - preserves the top-down structure, which is easier to read than proposed decorators bottom-up - adding a widget in a deep tree structure is...
@Wdestroier I don't understand what wouldn't work? It would work just as Flutter works today, you can just put a parameter marked as pipeable outside after the constructor/function call. Basically...
@Wdestroier i corrected the code, it was a mistake (the last |> Padding...)
> I don't think introducing special kinds of exceptions that must be handled (Java checked exceptions, basically) is going to fly. Probably doable using annotations and a lint, though. I...