Clean architecture flutter: A Flutter package that makes it easy and intuitive to implement Uncle Bob's Clean Architecture in Flutter. This package provides basic classes that are tuned to work with Flutter and are designed according to the Clean Architecture.
Describe the bug I am unable to override initState in ViewState to properlly handle animation.
To Reproduce Steps to reproduce the behavior:
initState
The member 'initState' is declared non-virtual in 'ViewState' and can't be overridden in subclasses.
Expected behavior I should be able to override initState.
Library (please complete the following information):
Additional context Add any other context about the problem here.
In
view.dart
on the methodinitState
should not be@nonVirtual
. It should be@mustCallSuper
.