react-native-boxes 1.4.86 → 1.4.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Modal.tsx +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-boxes",
3
- "version": "1.4.86",
3
+ "version": "1.4.87",
4
4
  "description": "A react native library for rapid development of UI using boxes",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/Modal.tsx CHANGED
@@ -122,6 +122,7 @@ export const BottomSheet = (props: BottomSheetProps) => {
122
122
  paddingTop: theme.dimens.space.md,
123
123
  paddingStart: theme.dimens.space.lg,
124
124
  paddingEnd: theme.dimens.space.lg,
125
+ paddingBottom: theme.insets?.bottom || 0
125
126
  }]}>
126
127
  <HBox style={{
127
128
  justifyContent: 'space-between',