React-Native-Navigation灯箱位置

时间:2018-05-31 11:05:17

标签: reactjs react-native react-native-navigation wix-react-native-navigation

我想知道wix的灯箱位置是否可以反应原生导航可以修改它的位置?我希望灯箱出现在屏幕的顶部而不是中间。有可能吗?

1 个答案:

答案 0 :(得分:0)

我不知道这是否是正确的方法,但是无论如何,我还是可以使用StyleSheet克服此问题。

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

.....

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

see the image