0

I am wondering if the lightbox position from wix react native navigation can be modify its position ? I want the light box to appear at the top of the screen instead of middle . Is it possible ?

Hafizi
  • 39
  • 8

1 Answers1

0

I don't know if this is a correct method, But anyhow I was able to overcome the issue here using StyleSheet.

import { StyleSheet, Dimensions } from "react-native";

.....

const styles = StyleSheet.create({
  container: {
    marginTop: 26 - Dimensions.get("window").height / 2 
  }
});

see the image

scopchanov
  • 7,966
  • 10
  • 40
  • 68
Monasha
  • 882
  • 1
  • 12
  • 17