Hi,
Is there any way to change the background color of a disabled text field?
Yes, this is possible.
First, you add the backgroundColor prop through the ‘+’-icon behind the Style property.
Then you add an expression binding to the newly added backgroundColor, where the first color is the true value and the second is the false value.
if({this.props.enabled}, "#000000","#FFFFFF")
You can test if it works, by manually toggling the Enabled value.