FMXBarButton

new property: Layout (blGlyphTop, blGlyphLeft, etc)

The property Align on TTMSFMXBitmap element in the FireMonkey style can be changed to allow an image to be on top / below of the text. Programmatically this would be achieved with the following code:

procedure TForm1.TMSFMXBarButton1ApplyStyleLookup(Sender: TObject);
var
img: TControl;
begin
img := TMSFMXBarButton1.FindStyleResource('image') as TControl;
img.Align := TAlignLayout.alTop;
img.Height := 30;
end;

This feature will not be implemented.