How do I create such button @

Please notice:
cc: @bradmartin
Hello @vekexasia,
You can achieve this with CSS using background-image for your icon.
For example something like this:
Button {
width: 400;
background-color: blue;
color:white;
font-family: sans-serif;
font-size: 18;
horizontal-align: center;
text-align:center;
background-image: url("res://icon");
background-position: left;
background-repeat: no-repeat;
background-size: contain;
}
Which will result this in Android

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Hello @vekexasia,
You can achieve this with CSS using background-image for your icon.
For example something like this:
Which will result this in Android
