Last active
March 10, 2022 14:35
-
-
Save jirawatee/c4b3b22fcc2cee67f2adec8b276f14bb to your computer and use it in GitHub Desktop.
Example of maxWidth and maxHeight in Flex Message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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