gpt4 book ai didi

react-native - 如何使 native Web充分发挥作用?

转载 作者:行者123 更新时间:2023-12-04 05:01:55 24 4
gpt4 key购买 nike

我正在使用React Native Web库,但无法在Web上进行全高

代码:

import React from 'react';
import {StyleSheet, View, Text, TouchableOpacity} from 'react-native';

class index extends React.Component {

render() {
return (
<View style={styles.container}>

<TouchableOpacity
style={{
backgroundColor: 'blue'
}}>
<Text style={{
color: 'green'
}}>Learning</Text>
</TouchableOpacity>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
width: '100%',
height: '100%',
margin: 0,
padding: 0,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'red'
}
})

export default index;

chrome浏览器的结果:
enter image description here

最佳答案

解决我的问题的是位置属性
position:'absolute'position:'fixed'
相对不工作position:'relative'

关于react-native - 如何使 native Web充分发挥作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47976358/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com