Reputation: 121
My UI seems to be hidden, how can I make it pop, I'm using Widget Positioned
Example:
I'm newbie, Many thanks all !
Upvotes: 0
Views: 2503
Reputation: 654
In your stack, set the clipBehavior property to Clip.none.
Stack(
clipBehavior: Clip.none,
...
);
Upvotes: 5