Skip to content

Instantly share code, notes, and snippets.

@jirawatee
Last active March 10, 2022 14:35
Show Gist options
  • Save jirawatee/c4b3b22fcc2cee67f2adec8b276f14bb to your computer and use it in GitHub Desktop.
Save jirawatee/c4b3b22fcc2cee67f2adec8b276f14bb to your computer and use it in GitHub Desktop.
Example of maxWidth and maxHeight in Flex Message
{
"type": "bubble",
"body": {
"type": "box",
"layout": "vertical",
"contents": [
{
"type": "box",
"layout": "horizontal",
"contents": [
{
"type": "button",
"action": {
"type": "message",
"label": "maxWidth 75%",
"text": " "
},
"style": "primary"
}
],
"maxWidth": "75%"
},
{
"type": "box",
"layout": "horizontal",
"contents": [
{
"type": "button",
"style": "secondary",
"action": {
"type": "message",
"label": "maxHeight 40px",
"text": " "
}
}
],
"maxHeight": "40px"
}
],
"spacing": "xl"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment