fancy_bottom_navigation icon indicating copy to clipboard operation
fancy_bottom_navigation copied to clipboard

Flutter 3.0 Bugs Showing for a method.

Open Kayuemkhan opened this issue 3 years ago • 6 comments

I upgraded flutter 3.0 Yesterday and got this line:

/C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/fancy_bottom_navigation-0.3.3/lib/fancy_bottom_navigation.dart:111:7: Error: No named parameter with the name 'overflow'.
      overflow: Overflow.visible,
      ^^^^^^^^

Kayuemkhan avatar May 14 '22 06:05 Kayuemkhan

In the new version of Flutter, Stack does not take overflow as parameter. go to the Package and go to the Stack widget most probably around line 109,

overflow: Overflow.visible should be changed to clipBehavior: Clip.none then everything will work fine

techcafe13 avatar Jun 01 '22 09:06 techcafe13

Do we have a new version planned for this?

rsbthebest avatar Jun 24 '22 07:06 rsbthebest

Update would be nice.

JaccoVeldscholten avatar Jun 24 '22 09:06 JaccoVeldscholten

In the new version of Flutter, Stack does not take overflow as parameter. go to the Package and go to the Stack widget most probably around line 109,

overflow: Overflow.visible should be changed to clipBehavior: Clip.none then everything will work fine

Worked

JagadishaIncture avatar Jun 26 '22 14:06 JagadishaIncture

@techcafe13 How can i do that ? It's from the library.

Kayuemkhan avatar Jun 30 '22 04:06 Kayuemkhan

@techcafe13 How can i do that ? It's from the library.

Its already updated I think. Just update your package.

techcafe13 avatar Jun 30 '22 06:06 techcafe13

@techcafe13 , Thanks a lot.

Kayuemkhan avatar Sep 15 '22 04:09 Kayuemkhan