安卓系统导航遮挡app底部导航问题

manifest.json
"app-plus": {
    "statusbar": {
            "immersed": true
        },
        "safearea": {
            "bottom": {
                "offset": "auto"
            }
        },
}

pages.json
"tabBar": {
    "height": "50px",
    "safeArea": true,
    "list": []
}

App.vue
page {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

  

posted @ 2025-12-26 10:36  挽你手  阅读(3)  评论(0)    收藏  举报