
동영상을 따라서 expo로 하고 있는데 스마트폰으로는 연동이 되지않는거같아요
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View, LogBox } from 'react-native';
export default function App() {
LogBox.ignoreLogs(['Warning: ...']);
return (
<View style={styles.container}>
<Text styles={styles.textstyle}> 스파르타 범식</Text>
<StatusBar style="dark" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
textstyle:{
color:'green'
}
});
전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
