Home > Back-end >  How to using positioned z-index in Flutter
How to using positioned z-index in Flutter

Time:11-05

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 !

CodePudding user response:

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

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