Hello Mike,
You can choose swatch (change color) for divider in the UI builder in the properties of list_component like in the screenshot:
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Evgene,
Thanks. Is there a way to specify a custom color other than the theme's swatches?
Mike,
Of course. You may set any color using custom css
Evgene,
Yes but what would the css property be for the list component's auto divider?
Mike,
If you want to set a specific color for all separators in all the lists, please try this code
code[data-role="list-divider"].ui-li-divider{
background-color:#ff0000;
}
if it is necessary for certain tiles to do this, add to these sheets of any class, for example redDivider, and use the css
.redDivider [data-role="list-divider"].ui-li-divider{
background-color:#ff0000;
}/code
Great thanks