Default Props

Örnek
Default Props
 Arkaplan.js
import React from "react";
import {View, Image, Text, StyleSheet, ImageBackground} from "react-native";
//import PropTypes from "prop-types";

const ArkaResim=({Isim="Muhammed", Resim=require("../Cotton-Candy-Clouds-Mural-Wallpaper.jpg")})=> {
  return (
    <ImageBackground source={Resim} resizeMode="cover" style={Stiller.Arkaplan}>
    <View>
      <Text style={{fontSize:20, fontWeight:"bold"}}>{Isim}</Text>
    </View>
    </ImageBackground>
  );
}

/*ArkaResim.defaultProps = {
  Isim : "Muhammed"
}*/

const Stiller = StyleSheet.create({
  Arkaplan: {
    flex:1,
    alignItems:"center",
    justifyContent:"center"
  }
});

export default ArkaResim;
  App.js
Yükleniyor...