reactnativeでアプリ開発を行っているのですが、iphoneシミュレータで以下の1枚目のようなエラーが出、正確に表示がされません。ファイル構成は二枚目のような形で、elementsのなかにbodytext.jsがある状態です。
bodytext.js↓
bodytext.js
1import React from 'react'; 2import ( Stylesheet, View, Text ) from 'react-native'; 3 4class BodyText extends React.Component { 5 render() { 6 return ( 7 <View> 8 <text style={styles.text}> 9 {this.props.children} 10 </text> 11 </View> 12 ); 13 } 14} 15 16const styles = Stylesheet.create({ 17 text: { 18 color: '#DDD', 19 backgroundColor: '#eee', 20 }, 21}); 22 23export default BodyText;
app.js↓
import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import BodyText from './src/components/BodyText.js'; export default class App extends React.Component { render() { return ( <View style={styles.container}> <Text>hello</Text> <BodyText /> </View> ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, });
どなたか分かる方いらっしゃればご教授お願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/26 06:39
2020/06/26 06:42
2020/06/26 06:46