Target Platforms
iOS, Android, UWP, Other
SDK Version
Schema 1.5
Application Name
cl.exe
Problem Description
The shared model allows TableRow and TableCell to be valid elements outside of the Table context leading to unfortunate behavior in dependent platforms.
- Android does not render the content
- iOS does render content
- UWP crashes
Screenshots
No response
Card JSON
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "TableRow",
"cells": [
{
"type": "TableCell",
"items": [
{
"type": "TextBlock",
"text": "."
}
]
}
]
}
]
}