React-Native Tutorial To do list [ #3 ]

μ‘°νŒ”λ‘œΒ·2020λ…„ 9μ›” 21일
0

React-Native-Todolist

λͺ©λ‘ 보기
3/15
post-thumbnail

React Native Tutorial λ”°λΌν•˜κΈ° πŸ“±

πŸ“Œ νŠœν† λ¦¬μ–Όμ„ λ”°λΌν•œ ν”„λ‘œμ νŠΈμž…λ‹ˆλ‹€!

배경색 및 타이틀 λ³€κ²½

app.js νŒŒμΌμ— μƒˆλ‘œμš΄ 타이틀과 μŠ€νƒ€μΌ μΆ”κ°€

import React from 'react';
import {SafeAreaView, StyleSheet, Text} from 'react-native';

const App = () => {
  return (
    <SafeAreaView style={styles.container}>
      <Text style={styles.appTitle}>Hello Todolist</Text>
    </SafeAreaView>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#3143e8',
  },
  appTitle: {
    color: '#fff',
    fontSize: 36,
    marginTop: 30,
    marginBottom: 30,
    fontWeight: '300',
    textAlign: 'center',
    backgroundColor: '#3143e8',
  },
});

export default App;

κ²°κ³Ό

profile
ν˜„μ‹€μ— μ•ˆμ£Όν•˜μ§€ μ•Šκ³  - 개발자

0개의 λŒ“κΈ€