Skip to content

Instantly share code, notes, and snippets.

@hemantasapkota
Created July 20, 2018 02:25
Show Gist options
  • Select an option

  • Save hemantasapkota/6d20d778ae842091e5c0179d3a96bced to your computer and use it in GitHub Desktop.

Select an option

Save hemantasapkota/6d20d778ae842091e5c0179d3a96bced to your computer and use it in GitHub Desktop.
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