From 7f9c150a7f9f6dcd4dde8113e88dd44c76020104 Mon Sep 17 00:00:00 2001 From: Jens Kuhr Hansen Date: Tue, 17 Mar 2026 07:03:01 +0100 Subject: [PATCH 1/8] Migrate StyleSheet.absoluteFillObject --- .../src/legacy/basic/pagerAndDrawer/index.android.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common-app/src/legacy/basic/pagerAndDrawer/index.android.tsx b/apps/common-app/src/legacy/basic/pagerAndDrawer/index.android.tsx index 7fe929ffa0..ad80c8a707 100644 --- a/apps/common-app/src/legacy/basic/pagerAndDrawer/index.android.tsx +++ b/apps/common-app/src/legacy/basic/pagerAndDrawer/index.android.tsx @@ -66,7 +66,7 @@ const styles = StyleSheet.create({ backgroundColor: '#F5FCFF', }, page: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, alignItems: 'center', justifyContent: 'center', }, From aca6f458b2f3ddc36304ee6ea0adf216f3a6170c Mon Sep 17 00:00:00 2001 From: Jens Kuhr Hansen Date: Tue, 17 Mar 2026 07:03:47 +0100 Subject: [PATCH 2/8] Migrate StyleSheet.absoluteFillObject --- apps/common-app/src/legacy/showcase/bottomSheet/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx b/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx index 86facab218..d8f66fa730 100644 --- a/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx +++ b/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx @@ -130,7 +130,7 @@ export class BottomSheet extends Component< maxDurationMs={100000} ref={this.masterdrawer} maxDeltaY={this.state.lastSnap - SNAP_POINTS_FROM_TOP[0]}> - + Date: Tue, 17 Mar 2026 07:04:45 +0100 Subject: [PATCH 3/8] Migrate StyleSheet.absoluteFillObject --- .../src/components/ReanimatedDrawerLayout.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx b/packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx index d1f6620036..43eedda301 100644 --- a/packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx +++ b/packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx @@ -711,16 +711,16 @@ export default DrawerLayout; const styles = StyleSheet.create({ drawerContainer: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, zIndex: 1001, flexDirection: 'row', }, containerInFront: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, zIndex: 1002, }, containerOnBack: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, }, main: { flex: 1, @@ -728,7 +728,7 @@ const styles = StyleSheet.create({ overflow: 'hidden', }, overlay: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, zIndex: 1000, }, }); From a395a3f2f5e02c951129b330d055db8a0e9e3027 Mon Sep 17 00:00:00 2001 From: Jens Kuhr Hansen Date: Tue, 17 Mar 2026 07:05:43 +0100 Subject: [PATCH 4/8] Migrate StyleSheet.absoluteFillObject --- .../components/ReanimatedSwipeable/ReanimatedSwipeable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx b/packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx index 5199741e8d..7495b6fd46 100644 --- a/packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx +++ b/packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/ReanimatedSwipeable.tsx @@ -552,12 +552,12 @@ const styles = StyleSheet.create({ overflow: 'hidden', }, leftActions: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, flexDirection: I18nManager.isRTL ? 'row-reverse' : 'row', overflow: 'hidden', }, rightActions: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, flexDirection: I18nManager.isRTL ? 'row' : 'row-reverse', overflow: 'hidden', }, From 5bbea17d6f40c4f13e02e366da9cedff074191a3 Mon Sep 17 00:00:00 2001 From: Jens Kuhr Hansen Date: Tue, 17 Mar 2026 07:06:29 +0100 Subject: [PATCH 5/8] Migrate StyleSheet.absoluteFillObject --- apps/common-app/src/legacy/v2_api/bottom_sheet/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common-app/src/legacy/v2_api/bottom_sheet/index.tsx b/apps/common-app/src/legacy/v2_api/bottom_sheet/index.tsx index bfe8dc2fc6..6d9c78a0d7 100644 --- a/apps/common-app/src/legacy/v2_api/bottom_sheet/index.tsx +++ b/apps/common-app/src/legacy/v2_api/bottom_sheet/index.tsx @@ -148,7 +148,7 @@ const styles = StyleSheet.create({ backgroundColor: 'coral', }, bottomSheet: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, backgroundColor: '#ff9f7A', }, }); From fd230cabbb253b12d1cd118899e609f07ec2438c Mon Sep 17 00:00:00 2001 From: Jens Kuhr Hansen Date: Tue, 17 Mar 2026 07:07:02 +0100 Subject: [PATCH 6/8] Migrate StyleSheet.absoluteFillObject --- apps/common-app/src/new_api/showcase/bottom_sheet/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common-app/src/new_api/showcase/bottom_sheet/index.tsx b/apps/common-app/src/new_api/showcase/bottom_sheet/index.tsx index 1cde9bbc10..e5848a1100 100644 --- a/apps/common-app/src/new_api/showcase/bottom_sheet/index.tsx +++ b/apps/common-app/src/new_api/showcase/bottom_sheet/index.tsx @@ -146,7 +146,7 @@ const styles = StyleSheet.create({ backgroundColor: COLORS.NAVY, }, bottomSheet: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, backgroundColor: COLORS.KINDA_BLUE, }, }); From 1bcf351aa848b67f35bba7ef1534ca2a0367a4e1 Mon Sep 17 00:00:00 2001 From: Jens Kuhr Hansen Date: Tue, 17 Mar 2026 07:07:29 +0100 Subject: [PATCH 7/8] Migrate StyleSheet.absoluteFillObject --- apps/common-app/src/legacy/recipes/scaleAndRotate/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common-app/src/legacy/recipes/scaleAndRotate/index.tsx b/apps/common-app/src/legacy/recipes/scaleAndRotate/index.tsx index c39e8df98f..ac5c342e0b 100644 --- a/apps/common-app/src/legacy/recipes/scaleAndRotate/index.tsx +++ b/apps/common-app/src/legacy/recipes/scaleAndRotate/index.tsx @@ -155,7 +155,7 @@ export default PinchableBox; const styles = StyleSheet.create({ container: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, backgroundColor: 'black', overflow: 'hidden', alignItems: 'center', From bb480dc0b1b724b38382e44b6f8da0392240e3f8 Mon Sep 17 00:00:00 2001 From: Jens Kuhr Hansen Date: Tue, 17 Mar 2026 07:59:49 +0100 Subject: [PATCH 8/8] Update index.tsx --- apps/common-app/src/legacy/showcase/bottomSheet/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx b/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx index d8f66fa730..bbf2c229b6 100644 --- a/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx +++ b/apps/common-app/src/legacy/showcase/bottomSheet/index.tsx @@ -133,7 +133,7 @@ export class BottomSheet extends Component<