fancy_bottom_navigation
fancy_bottom_navigation copied to clipboard
Flutter beta channel removed constructor param `Stack.overflow`
This package is broken in Flutter's beta channel. Apps using it will not compile.
See https://github.com/flutter/flutter/pull/98583.
Offending line is here: https://github.com/tunitowen/fancy_bottom_navigation/blob/master/lib/fancy_bottom_navigation.dart#L111
PR incoming.
Apparently this is still not fixed for Flutter 3.0. A deal breaker for me at the moment. Any idea when the PR will be merged?
Dont worry, its easy to fix, until they upload the fixed version, go to the Package and most probably around line 109 there will be a Stack Widget where overflow is not accepted anymore . kindly change it as below
overflow: Overflow.visible,
should be changed to clipBehavior: Clip.none,
, then everything will work just as like before.