Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const styles = StyleSheet.create({
backgroundColor: '#F5FCFF',
},
page: {
...StyleSheet.absoluteFillObject,
...StyleSheet.absoluteFill,
alignItems: 'center',
justifyContent: 'center',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default PinchableBox;

const styles = StyleSheet.create({
container: {
...StyleSheet.absoluteFillObject,
...StyleSheet.absoluteFill,
backgroundColor: 'black',
overflow: 'hidden',
alignItems: 'center',
Expand Down
4 changes: 2 additions & 2 deletions apps/common-app/src/legacy/showcase/bottomSheet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ export class BottomSheet extends Component<
maxDurationMs={100000}
ref={this.masterdrawer}
maxDeltaY={this.state.lastSnap - SNAP_POINTS_FROM_TOP[0]}>
<View style={StyleSheet.absoluteFillObject} pointerEvents="box-none">
<View style={StyleSheet.absoluteFill} pointerEvents="box-none">
<Animated.View
style={[
StyleSheet.absoluteFillObject,
StyleSheet.absoluteFill,
{
transform: [{ translateY: this.translateY }],
},
Expand Down
2 changes: 1 addition & 1 deletion apps/common-app/src/legacy/v2_api/bottom_sheet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const styles = StyleSheet.create({
backgroundColor: 'coral',
},
bottomSheet: {
...StyleSheet.absoluteFillObject,
...StyleSheet.absoluteFill,
backgroundColor: '#ff9f7A',
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const styles = StyleSheet.create({
backgroundColor: COLORS.NAVY,
},
bottomSheet: {
...StyleSheet.absoluteFillObject,
...StyleSheet.absoluteFill,
backgroundColor: COLORS.KINDA_BLUE,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -711,24 +711,24 @@ 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,
zIndex: 0,
overflow: 'hidden',
},
overlay: {
...StyleSheet.absoluteFillObject,
...StyleSheet.absoluteFill,
zIndex: 1000,
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
Expand Down