Remove gap in FlowLayout in swing

https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/awt/FlowLayout.html

// When creating layout
public FlowLayout(int align, int hgap, int vgap)
new FlowLayout(FlowLayout.LEADING, 0, 0);

// remove horizontal gap
public void setHgap(int hgap)
layout.setHgap(0);

// remove vertical gap
public void setVgap(int vgap)
layout.setVgap(0);

No comments:

Lognote - My toy project

In a project, the code work is limited When I say, "I think it will work if I change it like this," I get, "If it doesn't...