From f6b5e6ec59006fcc08af3efff64aa5d311cde463 Mon Sep 17 00:00:00 2001 From: Dhanush Pani Date: Thu, 9 Apr 2026 16:45:16 +0530 Subject: [PATCH 1/2] fix: replace deprecated absoluteFillObject in ActivityIndicator --- src/components/ActivityIndicator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ActivityIndicator.tsx b/src/components/ActivityIndicator.tsx index 5a3b9f8736..893c49f5ee 100644 --- a/src/components/ActivityIndicator.tsx +++ b/src/components/ActivityIndicator.tsx @@ -244,7 +244,7 @@ const styles = StyleSheet.create({ }, layer: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, justifyContent: 'center', alignItems: 'center', From cc20c566be209e3840c25ad325fa691f1d1c910b Mon Sep 17 00:00:00 2001 From: Dhanush Pani Date: Mon, 13 Apr 2026 16:30:05 +0530 Subject: [PATCH 2/2] fix: replace deprecated absoluteFillObject across components --- src/components/BottomNavigation/BottomNavigationBar.tsx | 4 ++-- src/components/FAB/FABGroup.tsx | 4 ++-- src/components/Menu/Menu.tsx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/BottomNavigation/BottomNavigationBar.tsx b/src/components/BottomNavigation/BottomNavigationBar.tsx index 05264c610a..17e4899750 100644 --- a/src/components/BottomNavigation/BottomNavigationBar.tsx +++ b/src/components/BottomNavigation/BottomNavigationBar.tsx @@ -957,7 +957,7 @@ const styles = StyleSheet.create({ justifyContent: 'center', }, iconWrapper: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, alignItems: 'center', }, v3IconWrapper: { @@ -968,7 +968,7 @@ const styles = StyleSheet.create({ paddingBottom: 2, }, labelWrapper: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, }, // eslint-disable-next-line react-native/no-color-literals label: { diff --git a/src/components/FAB/FABGroup.tsx b/src/components/FAB/FABGroup.tsx index ca263e3499..cb66cf08e0 100644 --- a/src/components/FAB/FABGroup.tsx +++ b/src/components/FAB/FABGroup.tsx @@ -520,7 +520,7 @@ const styles = StyleSheet.create({ alignItems: 'flex-end', }, container: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, justifyContent: 'flex-end', }, fab: { @@ -529,7 +529,7 @@ const styles = StyleSheet.create({ marginTop: 0, }, backdrop: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, }, containerStyle: { borderRadius: 5, diff --git a/src/components/Menu/Menu.tsx b/src/components/Menu/Menu.tsx index 956b362562..669656ca65 100644 --- a/src/components/Menu/Menu.tsx +++ b/src/components/Menu/Menu.tsx @@ -716,7 +716,7 @@ const styles = StyleSheet.create({ cursor: 'auto', }, }), - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFill, width: '100%', }, });