Erlend
Erlend
Dart uses [mixins](https://dart.dev/guides/language/language-tour#adding-features-to-a-class-mixins), a concept which lets you add features to a class without using multiple inheritance like explained in [this article](https://medium.com/flutter-community/dart-what-are-mixins-3a72344011f3). If you are allowing inheritance, please consider adding...
Hmm. Performance is good, but don't think the flashing is a good thing though. Could style not be preloaded before showing page?
but the link tag / css is loaded before the body, no?
I guess it's an async operation to load the links and you would hook on to a callback (`onload`?) when everything is loaded and then render the body with the...
Here is a minimal example. Press the image to go to the next page, to trigger the Exception. The exception only happens when the image is wrapped in a `Hero`...
Yes. This seem to work. Thank you for your efforts.
I found a case where this crashes still. If i add a `key`, to the stateful widget, it crashes inside `loadedCallback`, because `mounted` is now false ( most of the...
If i run the app once, and then perform a hot restart, it crashes with the following ( trying to set state when it has been disposed ). ``` setState()...
It feels a bit wrong to set `retryLimit`, just to make a different hash, when i don't care about `retryLimit`. Maybe passing a `UniqueKey` would be better? I still don't...
How would the `uid` be created? If i add `if (mounted)`, the `Loaded` text is not shown. Do you know why the `_ItemTileState` is disposed?