clragon
clragon
You can display your own widgets for loading and errors which can contain translations.
version 3.2.0 of this package has specifically removed that so that it removes a warning in flutter version 3.0. please upgrade to flutter version 3.0. if you do not plan...
duplicate of #56
Your code does not work because you are using shrinkwrap: https://api.flutter.dev/flutter/widgets/ScrollView/shrinkWrap.html which makes your entire scrollview build all its children at once and therefore breaks the way the paged view...
you should not be caching widgets, your data should be held in the controller and widgets should be built from it. the widgets will be disposed and built as they...
I also just ran into this issue. it would be awesome to have a mapping callback.
when you say `null security` do you mean `all properties are nullable`? because in dart, properties are meant to either be nullable or not depending on whether their valuer can...
no, I do not believe that is true. If I know that the model I will be getting from the server will never contain a null value, then it is...
I believe returning `{}` when there is an error to be a terrible API design. if your server has an error, it should return a http error status so that...
@FarhanSajid1 thats because you copied code from my repo without understanding it. You somehow removed the part where I unlock the mutex again after waiting for it. All of that...