-1

I would like to keep the top where the time is to be pinned and with a gray background color. I cannot figure out what that part of the screen is called and any information about this would be very useful. I am currently working on the IOS part first but android tips would be helpful too.enter image description here

RAT
  • 121
  • 1
  • 14
  • 1
    Have you checked this https://stackoverflow.com/questions/55750781/change-the-color-of-the-top-and-bottom-bar-controlsbar-statusbar-in-a-xamarin ? – adamm Apr 23 '21 at 06:03

1 Answers1

0

This worked for me.

this.Padding = new Thickness(0, Device.OnPlatform(30, 0, 0), 0, 0);

enter image description here

RAT
  • 121
  • 1
  • 14