@momo-kits/foundation 0.162.2-beta.15 → 0.162.2-beta.16

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.
package/Layout/Screen.tsx CHANGED
@@ -650,7 +650,14 @@ const Screen = forwardRef(
650
650
  onScroll={handleScroll}
651
651
  onScrollEndDrag={handleScrollEnd}
652
652
  scrollEventThrottle={16}
653
- style={Styles.flex}
653
+ style={[
654
+ Styles.flex,
655
+ !scrollable && !Footer && !isTab && { paddingBottom: bottomInset },
656
+ ]}
657
+ contentContainerStyle={[
658
+ scrollable && !Footer && !isTab && { paddingBottom: bottomInset },
659
+ scrollViewProps?.contentContainerStyle,
660
+ ]}
654
661
  >
655
662
  {renderAnimatedHeader()}
656
663
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/foundation",
3
- "version": "0.162.2-beta.15",
3
+ "version": "0.162.2-beta.16",
4
4
  "description": "React Native Component Kits",
5
5
  "main": "index.ts",
6
6
  "scripts": {},