Expander
Usage
Expander.create [
Expander.header "Check Logs"
// the Logs property may be an extremely long text that's why we use an expander
// hide the logs unless you want to see them
Expander.content (TextBlock.create [ TextBlock.text state.Logs ])
]Expander.create [
Expander.groupName "newsletter"
Expander.content expanderContent
// ExpandDirection.Up
// ExpandDirection.Down
// ExpandDirection.Left
// ExpandDirection.Right
Expander.expandDirection ExpandDirection.Up
]Last updated