uniapp微信小程序里配置底部安全距离
css解决方案
.my-safe-pb {
padding-bottom: env(safe-area-inset-bottom); // 同时兼容IOS>11.2及旧版本constant()的特性
}
js解决方案
const app = uni.getSystemInfoSync()
const safeAreaInsets = app.safeAreaInsets || {
left: 0,
right: 0,
top: 0,
bottom: 0
}
评论区