Ionic tab bar overlaps home button (iPhone X - iOS

2019-04-26 13:46发布

With iOS 11 and iPhone X Apple specified every app should live in a "safe area" (due to the virtual home button):

enter image description here

Inset essential content to prevent clipping. [...] For best results, use standard, system-provided interface elements and Auto Layout to construct your interface. All apps should adhere to the safe area and layout margins defined by UIKit, which ensure appropriate insetting based on the device and context. The safe area also prevents content from underlapping the status bar, navigation bar, toolbar, and tab bar.

The problem is a Ionic app (v. 1) with tab bar cover this part of the screen, therefore the bar is under the home button:

enter image description here

Does anyone know how to fix it?

(please note: if you run a new Ionic app v1 inside iPhone X simulator you will get two black spaces, at the top and bottom of the window, but you can prevent this adding "viewport-fit=cover" to your meta tag inside index.html)

3条回答
冷血范
2楼-- · 2019-04-26 14:36

You can add a constraint to your custom tabBar main view to connect it to the bottom safeAreaLayoutGuide.

yourView.bottomAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.bottomAnchor).isActive = true
查看更多
够拽才男人
3楼-- · 2019-04-26 14:41

You should be able to apply the same principle outlined in this answer to the Ionic v1 footer, i.e.

.bar-footer {
    margin-bottom: constant(safe-area-inset-bottom);
}

(or something similar - I haven't tested this)

查看更多
劳资没心,怎么记你
4楼-- · 2019-04-26 14:43

For an Ionic1 project, I found that targeting the tab-nav did the trick.

.tab-nav {
    margin-bottom: constant(safe-area-inset-bottom);
}
查看更多
登录 后发表回答