React Native Stillendirme

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

export default function App() {
  return (
    <View style={styles.container}>
      <Text>Hello React Native!</Text>

      <View style={[styles.box, styles.box1]}>
        <Text style={[styles.text, styles.text1]}>React Native</Text>
      </View>

      <View style={[styles.box, styles.box2]}>
        <Text style={[styles.text, styles.text2]}>React</Text>
      </View>

      <View style={styles.box}>
        <Text style={[styles.text, styles.text3]}>JavaScript</Text>
      </View>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fff",
    alignItems: "center",
    justifyContent: "center",
  },
  box: {
    width: 200,
    height: 200,
    backgroundColor: "red",
    marginBottom: 10,
  },
  box1: {
    backgroundColor: "blue",
  },
  box2: {
    backgroundColor: "bisque",
  },
  text: {
    color: "#fff",
    fontSize: 30,
    backgroundColor: "gray",
    textAlign: "center",
  },
  text1: {
    backgroundColor: "black",
  },
  text2: {
    backgroundColor: "aquamarine",
    color: "purple",
  },
  text2: {
    backgroundColor: "yellow",
    color: "#000",
  },
});
İnternet sitesi https://abdullahsarihan.com
Yazı oluşturuldu 85

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

Benzer yazılar

Aramak istediğinizi üstte yazmaya başlayın ve aramak için enter tuşuna basın. İptal için ESC tuşuna basın.