new property: FooterVisible (true/false)
Setting elements of a FireMonkey control needs to be done at style level, or programmatically with the following code:
procedure TForm1.TMSFMXPanel1ApplyStyleLookup(Sender: TObject);
begin
(TMSFMXPanel1.FindStyleResource('footer') as TControl).Visible := False;
(TMSFMXPanel1.FindStyleResource('header') as TControl).Visible := False;
end;
This feature will not be implemented.