a programer
a programer

Reputation: 121

How to using positioned z-index in Flutter

My UI seems to be hidden, how can I make it pop, I'm using Widget Positioned

My UI

Example:

Expected

I'm newbie, Many thanks all !

Upvotes: 0

Views: 2503

Answers (1)

developerjamiu
developerjamiu

Reputation: 654

In your stack, set the clipBehavior property to Clip.none.

Stack(
  clipBehavior: Clip.none,
  ...
);

Upvotes: 5

Related Questions