Why aren\'t my components wrapping in this JPanel using FlowLayout? They simply run off screen and are only partially visible.
JPanel panel = new JPanel(new Flo
That's because FlowLayout
doesn't. I know, it sucks.
But, you could take a look at WrapLayout which is a solution to this problem
I know this is an old question, but I stumbled upon it while trying to solve the same problem. It is not entirely true that FlowLayout will not wrap its child components.
The issue is that the JPanel with your desired FlowLayout must be inside another container that will resize and allow the FlowLayout to also resize and therefore wrap. In my experience, the CENTER region of a BorderLayout is the only such container that will allow this to happen.