FlowLayoutParams
classin packageklyn.gui.windows.layouts
public class FlowLayoutParams extends LayoutParams:
└ FlowLayoutParams
Optional per-widget hints for `FlowLayout`.
badge = Label("Beta")
badge.layoutParams = FlowLayoutParams(breakBefore=true)
Properties
Modifier and Type Member Description
public property breakAfter
breakAfter as Boolean = false
Forces a new row after placing the widget.
public property breakBefore
breakBefore as Boolean = false
Starts a new row before placing the widget.
Properties inherited from LayoutParams: growX, growY, horizontalAlign, verticalAlign
Constructors
Modifier and Type Member Description
public FlowLayoutParams
FlowLayoutParams(breakBefore as Boolean = false, breakAfter as Boolean = false, growX as Int = 0, growY as Int = 0):
No summary.
public FlowLayoutParams
FlowLayoutParams(breakBefore as Boolean, breakAfter as Boolean, growX as Int, growY as Int, horizontalAlign as String, verticalAlign as String):
No summary.