Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 wix react native navigation 的灯箱位置是否可以修改其位置?我希望灯箱出现在屏幕顶部而不是中间。可能吗 ?
我不知道这是否是一个正确的方法,但无论如何我能够使用 StyleSheet 克服这里的问题。
import { StyleSheet, Dimensions } from "react-native"; ..... const styles = StyleSheet.create({ container: { marginTop: 26 - Dimensions.get("window").height / 2 } });