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', 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%', }, });