Created
March 26, 2025 05:54
-
-
Save vman/82a95075f407e7787f7a2a132b0de292 to your computer and use it in GitHub Desktop.
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": "AdaptiveCard", | |
"version": "1.5", | |
"layouts": [ | |
{ | |
"type": "Layout.AreaGrid", | |
"targetWidth": "AtLeast:Standard", | |
"columns": [ | |
{ | |
"physicalSize": 100, | |
"unit": 0 | |
} | |
], | |
"areas": [ | |
{ | |
"name": "area1" | |
} | |
] | |
} | |
], | |
"body": [ | |
{ | |
"type": "ColumnSet", | |
"grid.area": "area1", | |
"style": "emphasis", | |
"showBorder": true, | |
"roundedCorners": true, | |
"columns": [ | |
{ | |
"type": "Column", | |
"items": [ | |
{ | |
"type": "TextBlock", | |
"text": "Area 1", | |
"wrap": true | |
}, | |
{ | |
"type": "TextBlock", | |
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", | |
"wrap": true | |
} | |
], | |
"width": "stretch" | |
} | |
] | |
} | |
], | |
"$schema": "https://adaptivecards.io/schemas/adaptive-card.json" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment