gpt4 book ai didi

react-native - react 原生找不到变量中心

转载 作者:行者123 更新时间:2023-12-04 01:52:27 26 4
gpt4 key购买 nike

每当我尝试定位我的文本中心时,我都会收到无法找到变量“中心”的错误。我做错了什么还是我做错了?

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View, Image} from 'react-native';


type Props = {};
export default class App extends Component<Props> {
render() {
return (
<View>
<Text style={styles.titel}>Random Text</Text>
</View>
);
}
}

const styles = StyleSheet.create({
titel:{
color: 'black',
justifyContent: center,
alignItems: center,
}
});

最佳答案

center不是 变量 ,是字符串 因此您需要将其添加为

  titel:{
color: 'black',
justifyContent: 'center',
alignItems: 'center',
}

关于react-native - react 原生找不到变量中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52349097/

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