13

I need an overflowed widget using clip behavior and I have no idea how to do that?

 child: Row(
    children: [
        Stack(
            children: [],
        overflow: Overflow.clip,
                                  ) 

enter image description here

1 Answer 1

39

Use clipBehavior like this:

Stack(
  clipBehavior: Clip.none, // This is what you need. 
  children: [],
)
Sign up to request clarification or add additional context in comments.

2 Comments

what if I want overflow.visible?
@AnAndroid This is exactly what Clip.none is doing.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.