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

650 B

setJustifyContent

Description

Determines how the children are aligned along the main axis

Parameters

  1. string One of ("flex-start", "flex-end", "center", "space-between", "space-around", "space-evenly") - default is flex-start. Works the same as the property of the same name in CSS flexboxes

Returns

  1. object The object in use

Usage

  • Creates a default flexbox and sets the justify content to space-between.
local main = basalt.createFrame()
local flexbox = mainFrame:addFlexbox()
      :setJustifyContent("space-between")