Is it possible to allow overflow within a container WITHOUT making that content scrollable? For example:
Container(
height: 100,
width: MediaQuery.of(context).size.width,
child: Row(
children: List.generate(10, (i) => Container(height: 100.0, width: 300).toList();
),
)
I know that it will theoretically work correctly in release, but I'm looking to suppress the overflow warnings while debugging.
I've tried wrapping the Container() in OverflowBox(), but it still shows the overflow warning. Everything else I've tried makes the list scrollable - it needs to stay fixed.