Files
Basalt/docs/objects/Flexbox/getFlexGrow.md
Robert Jelic 631eef525c Flexbox docs
Updated the flexbox documentation for the current flexbox implementation
2023-05-19 15:50:05 +02:00

22 lines
711 B
Markdown

## getFlexGrow
### Description
The `getFlexGrow` method retrieves the grow factor of a child object within the Flexbox container. This value determines how much of the remaining space along the main axis the child should take up, in relation to the other children.
### Returns
1. `number` The grow factor of the child object.
### Usage
* Creates a default Flexbox, adds some objects to it, sets the flexGrow for the first object, and then retrieves this value.
```lua
local main = basalt.createFrame()
local flexbox = mainFrame:addFlexbox()
local object1 = flexbox:addButton()
object1:setFlexGrow(1) -- this object will grow to take up remaining space
basalt.debug(object1:getFlexGrow()) -- prints 1
```