Skip to content

Instantly share code, notes, and snippets.

View surajsly's full-sized avatar
:electron:
Reacting

Suraj Singh surajsly

:electron:
Reacting
  • New Delhi , India
View GitHub Profile
@surajsly
surajsly / react native code snippets
Last active March 10, 2021 18:02
some react native snippets to be used in future
// change default back behavior for screens
React.useEffect(() => {
const backAction = () => {
Alert.alert("Hold on!", "Are you sure you want to go back?", [
{
text: "Cancel",
onPress: () => null,
style: "cancel",
},