Skip to content

Adaptive Card layout breaks on iOS Teams – Input.Number inside ColumnSet renders incorrectly #9365

@yashsinghvi-progressmaker

Description

Target Platforms

iOS

SDK Version

N/A – Adaptive Card JSON sent via backend (Python) and rendered in Microsoft Teams client

Application Name

Progress Maker App

Problem Description

We are experiencing a layout issue with Adaptive Cards when rendered in Microsoft Teams on iOS devices.

The same Adaptive Card renders correctly on:

Microsoft Teams Desktop (Windows/Mac)
Microsoft Teams Android app

However, on iOS (iPhone), the layout breaks — specifically, input fields (Input.Number) inside a ColumnSet do not align horizontally and instead shift vertically or overlap, causing UI inconsistency.

Expected Behavior

All columns (Start, Current, Updated, Target) should render in a single row with proper alignment, similar to Desktop and Android views.

Actual Behavior (iOS)
Input fields move below their intended columns
Column alignment is broken
Card appears stacked instead of grid-like
Layout becomes difficult to use

Screenshots

Image Image

Card JSON

{ "type": "AdaptiveCard", "version": "1.5", "body": [ { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "items": [{ "type": "TextBlock", "text": "Start" }] }, { "type": "Column", "width": "stretch", "items": [{ "type": "TextBlock", "text": "Current" }] }, { "type": "Column", "width": "stretch", "items": [ { "type": "Input.Number", "id": "updatedValue", "value": "4" } ] }, { "type": "Column", "width": "stretch", "items": [{ "type": "TextBlock", "text": "Target" }] } ] } ] }

Sample Code Language

Python

Sample Code

No response

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions