import { StyleSheet, Image, View } from "react-native";
import React from "react";
const App = () => {
const handleClick = () => {
alert("Merhaba");
};
return (
<View style={styles.container}>
<Image
resizeMode="contain"
style={{
width: "100%",
height: 180,
borderWidth: 2,
borderColor: "red",
}}
source={require("./assets/turk.jpeg")}
/>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
},
});
export default App;