Created
July 20, 2018 02:25
-
-
Save hemantasapkota/6d20d778ae842091e5c0179d3a96bced to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { NativeModules } from 'react-native'; | |
| export const Component = () => ( | |
| <Button onPress={() => { | |
| NativeModules.Commander.postCommand( | |
| { 'command': 'load_notifications' }, | |
| (data) => { Alert.alert("Login Success"); }, | |
| (error) => { Alert.alert(error); } )} | |
| </Button> | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment