How to extend bottom view colour below the home indicator in iPhone X?

In my case I wanted the view at the bottom to have a height of 49. So set the top to be 49 above the bottom layout guide.

enter image description here

Then set the view bottom to the superview bottom.

enter image description here

Now on iPhone X the view extends to the bottom of the phone, and is still has a height of 49 above the safe area, and on other devices the view has a height of 49.


Krunal's answer works in most cases. But if you don't have that top constraint set, the white view will go under the home indicator line.

enter image description here

In my design, the white view had leading ,trailing,bottom and height constraints only. I had to add another view as a subview to the white view (This view will act as the white view from now),enable the safe area layout guide for the outer white view and set the constraints to the margin/safe area in order to get this thing work for all the devices including X.

NB: Height constraint should be set for the inner view/Button(in my case) and not for the outer view. Autolayout will properly do the work for you in iphone X device.

enter image description here

This is how it looks in iphone X and other phones. iPhone SE:

Iphone 5c

iPhone X:

enter image description here

Hope this may help someone. :)


You need to set/attach bottom constraint of you white view with super view.

Follow these steps and see:

  • Check bottom/bottom alignment constraint of your view. It may be attached with bottom anchor/constraint of safe area.

enter image description here


  • (To edit it) Double click on Bottom constraint, which will show you following options.
  • Now change selection (tick mark) from safe area to super view.

enter image description here


  • set constant to 0 if not.

enter image description here


  • Here is result, that you may want.

enter image description here