Skip to content

Instantly share code, notes, and snippets.

@lrlineroa
Created November 17, 2019 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lrlineroa/442d49644758d8dfbaeee213ea2ae10f to your computer and use it in GitHub Desktop.
Save lrlineroa/442d49644758d8dfbaeee213ea2ae10f to your computer and use it in GitHub Desktop.
import { Alert } from 'react-native';
export default class Common {
static showAlert(title, message, btns = []) {
btns = btns.length == 0 ? [{ text: 'Continuar' }] : btns;
Alert.alert(title, message, btns)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment