A Delphi developer asked how do you change the background color of a FMX (FireMonkey) TEdit ?
As many know, for a VCL TEdit, you could just set the color property of the TEdit, like this:
Edit1.Color := clYellow;
Then at Run-Time, after calling Edit1.Color := clYellow, the Edit1 looks like this:
But, a FMX TEdit does not have a Color property, so how do you do the same for a FMX TEdit?
There are…