fancy_bottom_navigation icon indicating copy to clipboard operation
fancy_bottom_navigation copied to clipboard

Flutter beta channel removed constructor param `Stack.overflow`

Open mockturtl opened this issue 2 years ago • 2 comments

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.

mockturtl avatar Apr 21 '22 01:04 mockturtl

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?

James-A-White avatar May 12 '22 19:05 James-A-White

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.

techcafe13 avatar Jun 01 '22 09:06 techcafe13