Skip to content

Latest commit

 

History

History
60 lines (59 loc) · 1.53 KB

learning.md

File metadata and controls

60 lines (59 loc) · 1.53 KB

{/_ touchWF it's for pass the click event to image or what ever /} {/ <TouchableWithoutFeedback onPress={() => { console.log("image clicked"); }} > <Image // blurRadius={3} // fadeDuration={3000} source={{ width: 300, height: 300, uri: "https://picsum.photos/300/300", }} > /} {/ reduce the opacity of image when you click /} {/ <Image // blurRadius={3} // fadeDuration={3000} source={{ width: 300, height: 300, uri: "https://picsum.photos/300/300", }} > /} {/ <Image // blurRadius={3} // fadeDuration={3000} // opacity={0.8} source={{ width: 300, height: 300, uri: "https://picsum.photos/300/300", }} > /} {/ _/}

  {/* buttons :) */}
  {/* <Button
    color="gray"
    title="hello from the other side"
    onPress={() => {
      // Alert.alert("helloo boy", "My message", [
      //   {
      //     text: "yes",
      //     onPress: () => {
      //       console.log("the first is tapped");
      //     },
      //   },
      //   { text: "No" },
      // ]);
      // just for ios :(
      // Alert.prompt("My title", "message", (text) => {
      //   console.log(text);
      // });
    }}
  ></Button> */}