FNC DateTimePicker

How is the font color of the DateTimePicker handled when AdaptoStyle is checked ?
i use a FMX Dark Style where in all the edit/memo fields the font color is white, but in the FNC Date Time Picker, the font color is black (so i can not see the date).

Also when i click on the year or time the showed year/time overview is not styled.

Filip

Hi,

It's a shortcoming when loading styles in designtime and not all FMX styles are properly implemented because of shortcomings in the FMX style itself. Please use this technique for now using our own styles instead:

{$R 'TMSFNCStylesResources.res'}

procedure TForm1.FormCreate(Sender: TObject);
begin
  TMSFNCStylesManager1.StyleResource := 'FNC_DARK';
end;