diff --git a/packages/submit-bar/en-US.md b/packages/submit-bar/en-US.md index decd37169..b542d7ff1 100644 --- a/packages/submit-bar/en-US.md +++ b/packages/submit-bar/en-US.md @@ -73,6 +73,7 @@ Use slot to add custom contents. | loading | Whether to show loading icon | `Boolean` | `false` | | currency | Currency symbol | `String` | `¥` | | decimal-length | Number of digits to appear after the decimal point | `Number` | `2` | +| safe-area-inset-bottom | Whether to enable bottom safe area adaptation, to enable those features use `viewport-fit=cover` in the `viewport` meta tag | `Boolean` | `false` | ### Event diff --git a/packages/submit-bar/index.less b/packages/submit-bar/index.less index 2466ab00c..94c3ce013 100644 --- a/packages/submit-bar/index.less +++ b/packages/submit-bar/index.less @@ -7,6 +7,7 @@ z-index: 100; position: fixed; user-select: none; + background-color: @white; &__tip { color: #f56723; @@ -21,7 +22,6 @@ display: flex; font-size: 14px; align-items: center; - background-color: @white; } &__text { @@ -48,4 +48,9 @@ .van-button { width: 110px; } + + &--safe-area-inset-bottom { + padding-bottom: constant(safe-area-inset-bottom); + padding-bottom: env(safe-area-inset-bottom); + } } diff --git a/packages/submit-bar/index.tsx b/packages/submit-bar/index.tsx index 404a13e72..cfcd4ed87 100644 --- a/packages/submit-bar/index.tsx +++ b/packages/submit-bar/index.tsx @@ -16,6 +16,7 @@ export type SubmitBarProps = { buttonType: ButtonType; buttonText?: string; decimalLength: number; + safeAreaInsetBottom?: boolean; }; export type SubmitBarSlots = DefaultSlots & { @@ -35,7 +36,10 @@ function SubmitBar( const hasPrice = typeof price === 'number'; return ( -