Answers for "react native alert custom"

1

alert.alert react native style

Alert.alert(
      "Alert Title",
      "My Alert Msg",
      [
        {
          text: "Cancel",
          onPress: () => console.log("Cancel Pressed"),
          style: "cancel"
        },
        { text: "OK", onPress: () => console.log("OK Pressed") }
      ]
    );
Posted by: Guest on March-17-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language