avishail
avishail
ok, I've managed to get it but I don't have the time to make a proper PR. Feel free to take it. ```flutter class ShakingAnimatedText extends AnimatedText { int numberOfShakes;...
Thanks @vellt for the proposed workaround. A small issue with your suggestion is that when clicking on a tab, you'll get notified for all tabs between them. For example, say...
@avenwu, is it realistic to assume this will be fixed any time soon?
I've managed to work around it by wrapping the widget with container: ```flutter bottomNavigationBar: Container( padding: EdgeInsets.only(top: 16), child: ConvexAppBar( ... ), ) ``` but, the result is sub-optimal since...