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 ?
Asked
Active
Viewed 405 times
0
-
Please provide your code. What did you try to this moment? – Kamil Naja May 31 '18 at 11:06
1 Answers
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
}
});

scopchanov
- 7,966
- 10
- 40
- 68

Monasha
- 882
- 1
- 12
- 17