在樣式中使用字符串的小寫值。 import React from 'react';import { Text, View, SafeAreaView } from 'react-native';const App = () => { return ( <View style={{ flex: 1, justifyContent: 'center', // <-- fixed alignItems: 'center', // <-- fixed backgroundColor: 'rgb(255,255,255)', }}> <Text style={{ color: 'rgb(44,44,44)', textAlign: 'center', width: '100%', }}> Hello World! </Text> </View> );};export default App;