aboutsummaryrefslogtreecommitdiff
path: root/src/components/common/Draggable.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/common/Draggable.tsx')
-rw-r--r--src/components/common/Draggable.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/common/Draggable.tsx b/src/components/common/Draggable.tsx
index 347d2121..409ca6de 100644
--- a/src/components/common/Draggable.tsx
+++ b/src/components/common/Draggable.tsx
@@ -211,12 +211,14 @@ export default function Draggable(props: IProps) {
const positionCss: StyleProp<ViewStyle> = React.useMemo(() => {
const Window = Dimensions.get('window');
+
return {
position: 'absolute',
top: 0,
left: 0,
width: Window.width,
height: Window.height,
+ zIndex: z,
};
}, []);