Can we add text field dynamically

The easiest way to do this is with Action.ShowCard: { “type”: “AdaptiveCard”, “body”: [ { “type”: “Input.Text”, “placeholder”: “Placeholder 1”, “id”: “text1” } ], “actions”: [ { “type”: “Action.ShowCard”, “title”: “Add field”, “card”: { “type”: “AdaptiveCard”, “body”: [ { “type”: “Input.Text”, “placeholder”: “Placeholder 2”, “id”: “text2” } ], “actions”: [ { “type”: “Action.ShowCard”, “title”: “Add … Read more