...
| Code Block |
|---|
swing.panel() {
gridBagLayout()
label(text:"Hello", constraints:gbc(gridx:0,gridy:0,gridwidth:GridBagConstraints.REMAINDER, fill:GridBagConstraints.HORIZONTAL, insets:[10,10,10,10]))
button(text:"Click me" constraints:gbc(gridx:0,gridy:1))
}
|