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,
)
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,
)
Use clipBehavior like this:
Stack(
clipBehavior: Clip.none, // This is what you need.
children: [],
)
Use
clipBehavior: Clip.none,
Instead of
overflow: Overflow.clip,
overflow is deprecated since flutter 2.10.