첫 앱 만들기(react-native)

정은하·2024년 1월 25일
post-thumbnail

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

export default function App() {
  return (
    <View style={styles.container}>
      <View>
      <Text>안녕하세요</Text>
      </View>
      <Text style={styles.dummyText}>hello!</Text>
      <Button title='tab me'></Button>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
  dummyText:{
    margin:16,
    padding:16,
    borderWidth:2,
    borderColor:'red',
  }
});

profile
If you remain stagnant, you won't achieve anything

0개의 댓글