azheen
azheen

Reputation: 977

flutter: No named parameter with the name 'overflow', overflow: Overflow.visible,

i updated my flutter today and now the overflow parameter in stack widget no longer works.

Flutter 1.22.0-10.0.pre.252 • channel master • https://github.com/flutter/flutter.git
Framework • revision 78929661fb (5 hours ago) • 2020-09-18 08:08:30 -0700
Engine • revision 2abe69c608
Tools • Dart 2.10.0 (build 2.10.0-136.0.dev)

im using badges and stack widgets everywhere, what do i do?

Upvotes: 7

Views: 13065

Answers (2)

azheen
azheen

Reputation: 977

I switched flutter channel from master to stable and now its working fine :/

Upvotes: -3

RegularGuy
RegularGuy

Reputation: 3686

you replace all the overflow: Overflow.visible, with clipBehavior: Clip.none, or a similar Clip behaviour in all the Stack widgets that had the overflow property

Upvotes: 21

Related Questions