TableView Back button shape change

On my tableviewex, when I first display the detail view, the back button appears on a bar at the top of the screen in the shape of a rectangle with the left side shaped like an arrow pointing left.


Once I leave the detail view and go back to the main tableview, then select an item and go into detail view a second time, the back button now has changed color and the shape is a simple rectangular button shape.

I'm trying to avoid using styles wherever possible, preferring to set things up in code. I may have done something that causes this change, not sure. I would like the back button to maintain it's pointer shape.

Also, can I move the back button bar to the bottom of the screen?

Thanks in advance.

Hi, 


We have investigated this here but are not able to reproduce this issue. Are you able to reproduce this issue in a new project?

To move the back button you can use the following code:

procedure TForm1.TMSFMXTableView1ApplyStyleLookup(Sender: TObject);
begin
  TMSFMXTableView1.GetBackButton.Parent := TMSFMXTableView1.GetFooterRectangle;
end;
 

Once I moved the BackButton off of the Header and onto a separate rectangle, the problem ceased.


Thanks for the pointer.