<PackageReference Include="AdaptiveCards" Version="1.2.4" />
<PackageReference Include="AdaptiveCards.Rendering.Uwp" Version="1.2.8" />
The "Image" element doesn't include any spacing set on it, but you will see spacing on a parent ColumnSet.
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"text": "Here's a heading",
"type": "TextBlock",
"weight": "Bolder"
},
{
"type": "ColumnSet",
"spacing": "ExtraLarge",
"columns": [
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "Image",
"url": "https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE1Mu3b?ver=5c31"
}
]
}
]
},
{
"type": "Image",
"url": "https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE1Mu3b?ver=5c31",
"spacing": "ExtraLarge"
},
{
"text": "And some text below",
"type": "TextBlock",
"wrap": true
}
]
}

Hmm @paulcam206 quick stab here? I ensured it does not repro on the JS renderer so indeed looks like spacing isnt being honored on the UWP stack (both Image and ImageSet do inherit the Spacing property per the schema)
sure, I'll take a look :)
for what it's worth, this doesn't repro on master, still digging :)
has to do with SetSeparatorVisibility
Thanks @paulcam206! If it doesn't repro on master, should we just wait until our July 2.0 release then for this to be addressed vs porting over as a 1.2 patch?
Hi @adamhewitt627. We have acknowledged this issue report. Please continue to follow this issue for updates/progress/questions. @matthidinger / @dclaux / @rebeccaanne / @paulcam206 / @jwoo-msft / @almedina-ms FYI.
:tada:[email protected] has been released which fixes this issue.:tada:
Handy links: