We are trying to develop an app using Echo Show (smart speaker with screen) using APL. The users should be prompted for button clicking. I am wondering are there any ways to reduce the button size (put 5 buttons in an Echo Show display)?
These are some code snippet I wrote for rendering buttons on the screen:
"item":[{ "when": "${@viewportProfile != @hubRoundSmall}", "type": "Sequence", "width": "100%", "scrollDirection": "horizontal", "alignSelf": "center", "data": "${buttons}", "items":[{ "type": "AlexaButton", "buttonText": "${data.buttonText}", "id": "${data.id}", "buttonSize": "30dp", "buttonStyle": "${data.buttonStyle}", "touchForward": "${touchForwardSetting}", }] }]
In the "Items", I have tried to add keys of "size", "buttonSize", "maxWidth", and "width". Sadly, none of them work.. It would be really appreciated if someone knows the correct keys I should put. Thanks!